Skip to content

Commit

Permalink
chore: fix failing workflows
Browse files Browse the repository at this point in the history
  • Loading branch information
BenJeau committed Feb 15, 2025
1 parent afe3ae6 commit daa1570
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/check.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -76,12 +76,12 @@ jobs:
~/.cargo/registry/cache/
~/.cargo/git/db/
./target/
./tests/target/
key: ${{ runner.os }}-cargo-${{ hashFiles('./tests/Cargo.lock') }}-${{ hashFiles('./Cargo.lock') }}
./test/target/
key: ${{ runner.os }}-cargo-${{ hashFiles('./test/Cargo.lock') }}-${{ hashFiles('./Cargo.lock') }}
- name: Install cargo-interactive-update
run: cargo install --path .
- name: Run cargo test
run: cd tests && cargo run
run: cd test && cargo run

audit:
runs-on: ubuntu-latest
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -89,12 +89,12 @@ jobs:
~/.cargo/registry/cache/
~/.cargo/git/db/
./target/
./tests/target/
key: ${{ runner.os }}-cargo-${{ hashFiles('./tests/Cargo.lock') }}-${{ hashFiles('./Cargo.lock') }}
./test/target/
key: ${{ runner.os }}-cargo-${{ hashFiles('./test/Cargo.lock') }}-${{ hashFiles('./Cargo.lock') }}
- name: Install cargo-interactive-update
run: cargo install --path .
- name: Run cargo test
run: cd tests && cargo run
run: cd test && cargo run

audit:
runs-on: ubuntu-latest
Expand Down

0 comments on commit daa1570

Please sign in to comment.