Remove redundant "build" step

I mean the bloody thing already gets built with "cargo test", so...
This commit is contained in:
bitfl0wer 2024-07-24 14:06:10 +02:00
commit 6bc6651e80
No known key found for this signature in database
GPG Key ID: 0ACD574FCF5226CF
1 changed files with 0 additions and 2 deletions

View File

@ -43,12 +43,10 @@ jobs:
cargo tarpaulin --all-features --avoid-cfg-tarpaulin --tests --verbose --skip-clean --coveralls ${{ secrets.COVERALLS_REPO_TOKEN }} --timeout 120 cargo tarpaulin --all-features --avoid-cfg-tarpaulin --tests --verbose --skip-clean --coveralls ${{ secrets.COVERALLS_REPO_TOKEN }} --timeout 120
else else
echo "Code Coverage step is skipped on non-main PRs and PRs from forks." echo "Code Coverage step is skipped on non-main PRs and PRs from forks."
cargo build --verbose --all-features
cargo nextest run --verbose --all-features cargo nextest run --verbose --all-features
fi fi
else else
echo "Code Coverage step is skipped on non-main PRs and PRs from forks." echo "Code Coverage step is skipped on non-main PRs and PRs from forks."
cargo build --verbose --all-features
cargo nextest run --verbose --all-features cargo nextest run --verbose --all-features
fi fi
- name: Check common non-default feature configurations - name: Check common non-default feature configurations