Skip to content

Commit fd6e268

Browse files
authored
[CI] Check out submodules (#56)
1 parent cf9011b commit fd6e268

File tree

8 files changed

+27
-3
lines changed

8 files changed

+27
-3
lines changed

.github/workflows/2015.yml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -27,6 +27,9 @@ jobs:
2727

2828
steps:
2929
- uses: actions/checkout@v3
30+
with:
31+
token: ${{ secrets.PAT }}
32+
submodules: true
3033

3134
- name: Configure
3235
run: cmake -B build

.github/workflows/2017.yml

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,10 @@ jobs:
2020
working-directory: "2017"
2121

2222
steps:
23-
- uses: actions/checkout@v2
23+
- uses: actions/checkout@v3
24+
with:
25+
token: ${{ secrets.PAT }}
26+
submodules: true
2427

2528
- name: Use Node.js 18.x
2629
uses: actions/setup-node@v1

.github/workflows/2018.yml

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,10 @@ jobs:
2525
working-directory: "2018"
2626

2727
steps:
28-
- uses: actions/checkout@v2
28+
- uses: actions/checkout@v3
29+
with:
30+
token: ${{ secrets.PAT }}
31+
submodules: true
2932

3033
- name: Set up Python ${{ matrix.python-version }}
3134
uses: actions/setup-python@v2

.github/workflows/2019.yml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,9 @@ jobs:
2121

2222
steps:
2323
- uses: actions/checkout@v3
24+
with:
25+
token: ${{ secrets.PAT }}
26+
submodules: true
2427

2528
- name: Build
2629
run: cargo build

.github/workflows/2020.yml

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,10 @@ jobs:
2020
working-directory: "2020"
2121

2222
steps:
23-
- uses: actions/checkout@v2
23+
- uses: actions/checkout@v3
24+
with:
25+
token: ${{ secrets.PAT }}
26+
submodules: true
2427

2528
- uses: actions/setup-go@v2
2629
with:

.github/workflows/2021.yml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -27,6 +27,9 @@ jobs:
2727

2828
steps:
2929
- uses: actions/checkout@v3
30+
with:
31+
token: ${{ secrets.PAT }}
32+
submodules: true
3033

3134
- name: Configure
3235
run: cmake -B build

.github/workflows/2022.yml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,9 @@ jobs:
2121

2222
steps:
2323
- uses: actions/checkout@v3
24+
with:
25+
token: ${{ secrets.PAT }}
26+
submodules: true
2427

2528
- name: Build
2629
run: cargo build

.github/workflows/2023.yml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,9 @@ jobs:
2121

2222
steps:
2323
- uses: actions/checkout@v3
24+
with:
25+
token: ${{ secrets.PAT }}
26+
submodules: true
2427

2528
- name: Build
2629
run: ./gradlew build

0 commit comments

Comments
 (0)