Skip to content

Commit

Permalink
fix(ci): 🐛 Remove the --target from cargo build and cargo test
Browse files Browse the repository at this point in the history
  • Loading branch information
SpiralOutDotEu committed Nov 2, 2023
1 parent 16c84ea commit 2c13892
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,9 +23,9 @@ jobs:
override: true
- name: Build and test
run: |
cargo build --release --target ${{ matrix.target }}
cargo build --release
if [[ "${{ matrix.os }}" == "ubuntu-latest" ]]; then
cargo test --target ${{ matrix.target }}
cargo test
fi
env:
CARGO_TARGET_DIR: ${{ runner.temp }}/target
Expand Down

0 comments on commit 2c13892

Please sign in to comment.