Skip to content

Commit

Permalink
Add non-required test to bypass the lockfile
Browse files Browse the repository at this point in the history
  • Loading branch information
masklinn committed Dec 7, 2024
1 parent 9ad2ba3 commit 7c39a10
Showing 1 changed file with 15 additions and 8 deletions.
23 changes: 15 additions & 8 deletions .github/workflows/rust.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,10 +13,8 @@ jobs:

steps:
- uses: actions/checkout@v4
- name: Format
run: cargo fmt --check
- name: clippy
if: always()
- run: cargo fmt --check
- if: always()
run: cargo clippy

rust-tests:
Expand All @@ -26,7 +24,16 @@ jobs:
- uses: actions/checkout@v4
with:
submodules: true
- name: Check
run: cargo check
- name: Run tests
run: cargo test -r --verbose
- run: cargo check
- run: cargo test -r --verbose

rust-latest-deps:
runs-on: ubuntu-latest
continue-on-error: true

steps:
- uses: actions/checkout@v4
with:
submodules: true
- run: cargo update --verbose
- run: cargo test -r --verbose

0 comments on commit 7c39a10

Please sign in to comment.