Update CI config (reference enabled)
This commit is contained in:
parent
c59f6ac686
commit
df48b77f23
1 changed files with 9 additions and 5 deletions
14
.github/workflows/ci.yml
vendored
14
.github/workflows/ci.yml
vendored
|
@ -19,13 +19,17 @@ jobs:
|
||||||
- uses: actions-rs/toolchain@v1
|
- uses: actions-rs/toolchain@v1
|
||||||
with: {profile: minimal, toolchain: '${{ matrix.rust }}', override: true}
|
with: {profile: minimal, toolchain: '${{ matrix.rust }}', override: true}
|
||||||
- run: cargo test
|
- run: cargo test
|
||||||
clippy:
|
reference:
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
strategy:
|
|
||||||
matrix:
|
|
||||||
rust: [beta]
|
|
||||||
steps:
|
steps:
|
||||||
- uses: actions/checkout@v2
|
- uses: actions/checkout@v2
|
||||||
- uses: actions-rs/toolchain@v1
|
- uses: actions-rs/toolchain@v1
|
||||||
with: {profile: minimal, toolchain: '${{ matrix.rust }}', override: true, components: clippy}
|
with: {profile: minimal, toolchain: stable, override: true}
|
||||||
|
- run: cargo test --features=reference
|
||||||
|
clippy:
|
||||||
|
runs-on: ubuntu-latest
|
||||||
|
steps:
|
||||||
|
- uses: actions/checkout@v2
|
||||||
|
- uses: actions-rs/toolchain@v1
|
||||||
|
with: {profile: minimal, toolchain: beta, override: true, components: clippy}
|
||||||
- run: cargo clippy
|
- run: cargo clippy
|
||||||
|
|
Loading…
Reference in a new issue