Skip to content

Commit

Permalink
GA: run cross builds with cross
Browse files Browse the repository at this point in the history
  • Loading branch information
sebastinas committed Sep 6, 2023
1 parent 2d6a6a3 commit b00ea0a
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions .github/workflows/build.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -79,10 +79,12 @@ jobs:
with:
targets: ${{matrix.target}}
- uses: Swatinem/rust-cache@v2
- name: Install cross
run: cargo install cross
- name: Test with default features
run: cargo test --workspace --target ${{matrix.target}}
run: cross test --workspace --target ${{matrix.target}}
- name: Test with all features
run: cargo test --all-features --workspace --target ${{matrix.target}}
run: cross test --all-features --workspace --target ${{matrix.target}}

fmt:
name: Rustfmt
Expand Down

0 comments on commit b00ea0a

Please sign in to comment.