mirror of
https://github.com/Cyrix126/gupaxx.git
synced 2024-12-22 14:49:21 +00:00
fix: do not check features
This commit is contained in:
parent
b470a00f31
commit
160d0314d9
1 changed files with 4 additions and 4 deletions
8
.github/workflows/rust.yml
vendored
8
.github/workflows/rust.yml
vendored
|
@ -27,7 +27,7 @@ jobs:
|
|||
steps:
|
||||
- uses: actions/checkout@v4
|
||||
- name: Test
|
||||
run: cargo test --all-features
|
||||
run: cargo test
|
||||
typo:
|
||||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
|
@ -43,7 +43,7 @@ jobs:
|
|||
steps:
|
||||
- uses: actions/checkout@v4
|
||||
- name: Clippy (fail on warnings)
|
||||
run: cargo clippy --all-features -- -D warnings
|
||||
run: cargo clippy -- -D warnings
|
||||
check:
|
||||
runs-on: ${{ matrix.os }}
|
||||
strategy:
|
||||
|
@ -52,7 +52,7 @@ jobs:
|
|||
steps:
|
||||
- uses: actions/checkout@v4
|
||||
- name: Check compilation
|
||||
run: cargo check --all-features --verbose
|
||||
run: cargo check --verbose
|
||||
doc:
|
||||
runs-on: ${{ matrix.os }}
|
||||
strategy:
|
||||
|
@ -61,4 +61,4 @@ jobs:
|
|||
steps:
|
||||
- uses: actions/checkout@v4
|
||||
- name: Documentation
|
||||
run: cargo doc --all-features --no-deps
|
||||
run: cargo doc --no-deps
|
||||
|
|
Loading…
Reference in a new issue