2024-07-30 07:11:27 +01:00
|
|
|
name: Rust
|
|
|
|
|
|
|
|
on:
|
|
|
|
push:
|
|
|
|
branches: ["next"]
|
|
|
|
pull_request:
|
|
|
|
branches: ["main"]
|
|
|
|
|
|
|
|
env:
|
|
|
|
CARGO_TERM_COLOR: always
|
|
|
|
|
|
|
|
jobs:
|
|
|
|
build:
|
|
|
|
runs-on: docker
|
|
|
|
|
2024-09-17 14:42:23 +01:00
|
|
|
strategy:
|
|
|
|
matrix:
|
|
|
|
toolchain:
|
|
|
|
- name: stable
|
|
|
|
- name: nightly
|
|
|
|
|
2024-07-30 07:11:27 +01:00
|
|
|
steps:
|
|
|
|
- name: Checkout
|
|
|
|
uses: actions/checkout@v4
|
|
|
|
|
|
|
|
- name: Format
|
2024-09-30 22:47:31 +01:00
|
|
|
uses: https://git.kemitix.net/kemitix/rust@v2.3.0
|
2024-07-30 07:11:27 +01:00
|
|
|
with:
|
2024-09-17 14:42:23 +01:00
|
|
|
args: ${{ matrix.toolchain.name }} cargo fmt --all -- --check
|
2024-07-30 07:11:27 +01:00
|
|
|
|
|
|
|
# - name: Machete
|
|
|
|
# uses: https://github.com/bnjbvr/cargo-machete@v0.6.2
|
|
|
|
|
|
|
|
- name: Clippy
|
2024-09-30 22:47:31 +01:00
|
|
|
uses: https://git.kemitix.net/kemitix/rust@v2.3.0
|
2024-07-30 07:11:27 +01:00
|
|
|
with:
|
2024-09-17 14:42:23 +01:00
|
|
|
args: ${{ matrix.toolchain.name }} cargo clippy
|
2024-07-30 07:11:27 +01:00
|
|
|
|
|
|
|
- name: Build
|
2024-09-30 22:47:31 +01:00
|
|
|
uses: https://git.kemitix.net/kemitix/rust@v2.3.0
|
2024-07-30 07:11:27 +01:00
|
|
|
with:
|
2024-09-17 14:42:23 +01:00
|
|
|
args: ${{ matrix.toolchain.name }} cargo build
|
2024-07-30 07:11:27 +01:00
|
|
|
|
|
|
|
- name: Test
|
2024-09-30 22:47:31 +01:00
|
|
|
uses: https://git.kemitix.net/kemitix/rust@v2.3.0
|
2024-07-30 07:11:27 +01:00
|
|
|
with:
|
2024-09-17 14:42:23 +01:00
|
|
|
args: ${{ matrix.toolchain.name }} cargo test --no-fail-fast
|
2024-07-30 07:11:27 +01:00
|
|
|
|
|
|
|
- name: Integration
|
2024-09-30 22:47:31 +01:00
|
|
|
uses: https://git.kemitix.net/kemitix/rust@v2.3.0
|
2024-09-17 14:27:03 +01:00
|
|
|
with:
|
|
|
|
args: ./test.sh
|