Skip to content

Commit

Permalink
Another attempt at recursing into submodules.
Browse files Browse the repository at this point in the history
  • Loading branch information
EpsilonPrime committed Feb 13, 2024
1 parent 154e5e3 commit 75178ac
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 2 deletions.
6 changes: 5 additions & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,11 @@ jobs:
- name: Checkout code
uses: actions/checkout@v4
with:
submodules: true
submodules: recursive
- name: Pull submodules
run: |
git submodule update --init --recursive
git submodule update --recursive
- name: Set up Python
uses: actions/setup-python@v5
with:
Expand Down
6 changes: 5 additions & 1 deletion .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,11 @@ jobs:
- name: Checkout code
uses: actions/checkout@v4
with:
submodules: true
submodules: recursive
- name: Pull submodules
run: |
git submodule update --init --recursive
git submodule update --recursive
- name: Set up Python
uses: actions/setup-python@v5
with:
Expand Down

0 comments on commit 75178ac

Please sign in to comment.