mirror of
https://github.com/str4d/rage.git
synced 2025-04-04 11:27:43 +03:00
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:
parent
71484d7fd2
commit
70d95e1ce9
1 changed files with 13 additions and 4 deletions
17
.github/workflows/ci.yml
vendored
17
.github/workflows/ci.yml
vendored
|
@ -12,11 +12,20 @@ jobs:
|
||||||
|
|
||||||
steps:
|
steps:
|
||||||
- uses: actions/checkout@v4
|
- uses: actions/checkout@v4
|
||||||
- run: cargo fetch
|
|
||||||
- name: Build tests
|
|
||||||
run: cargo build --workspace --verbose --exclude rage --all-features --tests
|
|
||||||
- name: Run 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:
|
build:
|
||||||
name: Build target ${{ matrix.target }}
|
name: Build target ${{ matrix.target }}
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue