003cdd6f59
All checks were successful
ci/woodpecker/pr/woodpecker Pipeline was successful
Rust / build (map[name:nightly]) (pull_request) Successful in 1m20s
Rust / build (map[name:stable]) (pull_request) Successful in 2m48s
ci/woodpecker/pull_request_closed/woodpecker Pipeline was successful
ci/woodpecker/push/woodpecker Pipeline was successful
Rust / build (map[name:nightly]) (push) Successful in 1m44s
Rust / build (map[name:stable]) (push) Successful in 3m45s
ci/woodpecker/cron/woodpecker Pipeline was successful
52 lines
1.1 KiB
YAML
52 lines
1.1 KiB
YAML
name: Rust
|
|
|
|
on:
|
|
push:
|
|
branches: ["next"]
|
|
pull_request:
|
|
branches: ["main"]
|
|
|
|
env:
|
|
CARGO_TERM_COLOR: always
|
|
|
|
jobs:
|
|
build:
|
|
runs-on: docker
|
|
|
|
strategy:
|
|
matrix:
|
|
toolchain:
|
|
- name: stable
|
|
- name: nightly
|
|
|
|
steps:
|
|
- name: Checkout
|
|
uses: actions/checkout@v4
|
|
|
|
- name: Format
|
|
uses: https://git.kemitix.net/kemitix/rust@v2.3.0
|
|
with:
|
|
args: ${{ matrix.toolchain.name }} cargo fmt --all -- --check
|
|
|
|
# - name: Machete
|
|
# uses: https://github.com/bnjbvr/cargo-machete@v0.6.2
|
|
|
|
- name: Clippy
|
|
uses: https://git.kemitix.net/kemitix/rust@v2.3.0
|
|
with:
|
|
args: ${{ matrix.toolchain.name }} cargo clippy
|
|
|
|
- name: Build
|
|
uses: https://git.kemitix.net/kemitix/rust@v2.3.0
|
|
with:
|
|
args: ${{ matrix.toolchain.name }} cargo build
|
|
|
|
- name: Test
|
|
uses: https://git.kemitix.net/kemitix/rust@v2.3.0
|
|
with:
|
|
args: ${{ matrix.toolchain.name }} cargo test --no-fail-fast
|
|
|
|
- name: Integration
|
|
uses: https://git.kemitix.net/kemitix/rust@v2.3.0
|
|
with:
|
|
args: ./test.sh
|