Skip to content

Commit

Permalink
[CI] Check out submodules
Browse files Browse the repository at this point in the history
  • Loading branch information
kfarnung committed Nov 30, 2024
1 parent cf9011b commit 5196401
Show file tree
Hide file tree
Showing 8 changed files with 27 additions and 3 deletions.
3 changes: 3 additions & 0 deletions .github/workflows/2015.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,9 @@ jobs:

steps:
- uses: actions/checkout@v3
with:
token: ${{ secrets.PAT }}
submodules: true

- name: Configure
run: cmake -B build
Expand Down
5 changes: 4 additions & 1 deletion .github/workflows/2017.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,10 @@ jobs:
working-directory: "2017"

steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v3
with:
token: ${{ secrets.PAT }}
submodules: true

- name: Use Node.js 18.x
uses: actions/setup-node@v1
Expand Down
5 changes: 4 additions & 1 deletion .github/workflows/2018.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,10 @@ jobs:
working-directory: "2018"

steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v3
with:
token: ${{ secrets.PAT }}
submodules: true

- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v2
Expand Down
3 changes: 3 additions & 0 deletions .github/workflows/2019.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,9 @@ jobs:

steps:
- uses: actions/checkout@v3
with:
token: ${{ secrets.PAT }}
submodules: true

- name: Build
run: cargo build
Expand Down
5 changes: 4 additions & 1 deletion .github/workflows/2020.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,10 @@ jobs:
working-directory: "2020"

steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v3
with:
token: ${{ secrets.PAT }}
submodules: true

- uses: actions/setup-go@v2
with:
Expand Down
3 changes: 3 additions & 0 deletions .github/workflows/2021.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,9 @@ jobs:

steps:
- uses: actions/checkout@v3
with:
token: ${{ secrets.PAT }}
submodules: true

- name: Configure
run: cmake -B build
Expand Down
3 changes: 3 additions & 0 deletions .github/workflows/2022.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,9 @@ jobs:

steps:
- uses: actions/checkout@v3
with:
token: ${{ secrets.PAT }}
submodules: true

- name: Build
run: cargo build
Expand Down
3 changes: 3 additions & 0 deletions .github/workflows/2023.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,9 @@ jobs:

steps:
- uses: actions/checkout@v3
with:
token: ${{ secrets.PAT }}
submodules: true

- name: Build
run: ./gradlew build
Expand Down

0 comments on commit 5196401

Please sign in to comment.