Skip to content

Commit

Permalink
CI: Run rage tests
Browse files Browse the repository at this point in the history
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.
  • Loading branch information
str4d committed Jan 16, 2024
1 parent 71484d7 commit 70d95e1
Showing 1 changed file with 13 additions and 4 deletions.
17 changes: 13 additions & 4 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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 }}
Expand Down

0 comments on commit 70d95e1

Please sign in to comment.