Skip to content

Commit

Permalink
ci: cargo build instead of check (#368)
Browse files Browse the repository at this point in the history
  • Loading branch information
DaniPopes authored Oct 12, 2023
1 parent bc34424 commit db4466d
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -31,9 +31,9 @@ jobs:
with:
cache-on-failure: true
# Only run tests on latest stable and above
- name: check
- name: build
if: ${{ matrix.rust == '1.65' }} # MSRV
run: cargo check --workspace ${{ matrix.flags }}
run: cargo build --workspace ${{ matrix.flags }}
- name: test
if: ${{ matrix.rust != '1.65' }} # MSRV
run: cargo test --workspace ${{ matrix.flags }}
Expand Down

0 comments on commit db4466d

Please sign in to comment.