Skip to content

Commit

Permalink
workflow fix
Browse files Browse the repository at this point in the history
  • Loading branch information
cqb13 committed Jul 9, 2024
1 parent f288c6f commit 974ded5
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 0 deletions.
6 changes: 6 additions & 0 deletions .github/workflows/publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -41,6 +41,12 @@ jobs:
steps:
- name: Check out repository
uses: actions/checkout@v4
with:
submodules: true
fetch-depth: 0

- name: Initialize and update submodules
run: git submodule update --init --recursive

- name: Run tests
run: cargo test --verbose
Expand Down
2 changes: 2 additions & 0 deletions .github/workflows/pull_request.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,8 @@ jobs:

steps:
- uses: actions/checkout@v4
- name: Initialize and update submodules
run: git submodule update --init --recursive
- name: Build
run: cargo build --verbose
- name: Run tests
Expand Down

0 comments on commit 974ded5

Please sign in to comment.