test: also run CI tests against Rust nightly
Some checks failed
ci/woodpecker/push/cron-docker-builder Pipeline was successful
Rust / build (map[name:stable]) (push) Failing after 17s
Rust / build (map[name:nightly]) (push) Failing after 20s
ci/woodpecker/push/push-next Pipeline was successful
ci/woodpecker/push/tag-created Pipeline was successful
Some checks failed
ci/woodpecker/push/cron-docker-builder Pipeline was successful
Rust / build (map[name:stable]) (push) Failing after 17s
Rust / build (map[name:nightly]) (push) Failing after 20s
ci/woodpecker/push/push-next Pipeline was successful
ci/woodpecker/push/tag-created Pipeline was successful
This commit is contained in:
parent
dbf1a0db27
commit
b63069c767
1 changed files with 14 additions and 8 deletions
|
@ -13,26 +13,32 @@ jobs:
|
||||||
build:
|
build:
|
||||||
runs-on: docker
|
runs-on: docker
|
||||||
|
|
||||||
|
strategy:
|
||||||
|
matrix:
|
||||||
|
toolchain:
|
||||||
|
- name: stable
|
||||||
|
- name: nightly
|
||||||
|
|
||||||
steps:
|
steps:
|
||||||
- name: Checkout
|
- name: Checkout
|
||||||
uses: actions/checkout@v4
|
uses: actions/checkout@v4
|
||||||
|
|
||||||
- name: Format
|
- name: Format
|
||||||
uses: https://git.kemitix.net/kemitix/rust@v1.81.0
|
uses: https://git.kemitix.net/kemitix/rust@v2.0.0
|
||||||
with:
|
with:
|
||||||
args: cargo fmt --all -- --check
|
args: ${{ matrix.toolchain.name }} cargo fmt --all -- --check
|
||||||
|
|
||||||
- name: Clippy
|
- name: Clippy
|
||||||
uses: https://git.kemitix.net/kemitix/rust@v1.81.0
|
uses: https://git.kemitix.net/kemitix/rust@v2.0.0
|
||||||
with:
|
with:
|
||||||
args: cargo hack --feature-powerset clippy
|
args: ${{ matrix.toolchain.name }} cargo hack --feature-powerset clippy
|
||||||
|
|
||||||
- name: Build
|
- name: Build
|
||||||
uses: https://git.kemitix.net/kemitix/rust@v1.81.0
|
uses: https://git.kemitix.net/kemitix/rust@v2.0.0
|
||||||
with:
|
with:
|
||||||
args: cargo hack --feature-powerset build
|
args: ${{ matrix.toolchain.name }} cargo hack --feature-powerset build
|
||||||
|
|
||||||
- name: Test
|
- name: Test
|
||||||
uses: https://git.kemitix.net/kemitix/rust@v1.81.0
|
uses: https://git.kemitix.net/kemitix/rust@v2.0.0
|
||||||
with:
|
with:
|
||||||
args: cargo hack --feature-powerset test
|
args: ${{ matrix.toolchain.name }} cargo hack --feature-powerset test
|
||||||
|
|
Loading…
Reference in a new issue