CI: Run rage tests

This requires specifying all feature flags manually, as we can't use
--all-features without enabling the `rage/mount` feature flag which only
works on some runners.
This commit is contained in:
Jack Grigg 2024-01-16 04:02:09 +00:00
parent 71484d7fd2
commit 70d95e1ce9

View file

@ -12,11 +12,20 @@ jobs:
steps:
- uses: actions/checkout@v4
- run: cargo fetch
- name: Build tests
run: cargo build --workspace --verbose --exclude rage --all-features --tests
- name: Run tests
run: cargo test --workspace --verbose --exclude rage --all-features
run: >
cargo test
--workspace
--features '
armor
async
cli-common
plugin
ssh
unstable
'
- name: Verify working directory is clean
run: git diff --exit-code
build:
name: Build target ${{ matrix.target }}