2024-05-16 06:52:22 +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 09:59:13 +01:00
|
|
|
|
|
|
|
strategy:
|
|
|
|
matrix:
|
|
|
|
toolchain:
|
|
|
|
- name: stable
|
|
|
|
- name: nightly
|
2024-05-16 06:52:22 +01:00
|
|
|
|
|
|
|
steps:
|
|
|
|
- name: Checkout
|
|
|
|
uses: actions/checkout@v4
|
|
|
|
|
2024-09-22 15:22:24 +01:00
|
|
|
- name: Check TODOs
|
|
|
|
uses: kemitix/todo-checker@v1.1.0
|
|
|
|
|
2024-09-17 14:50:13 +01:00
|
|
|
- name: Machete
|
2024-09-30 22:46:31 +01:00
|
|
|
uses: https://git.kemitix.net/kemitix/rust@v2.3.0
|
2024-09-17 14:50:13 +01:00
|
|
|
with:
|
|
|
|
args: ${{ matrix.toolchain.name }} cargo machete
|
|
|
|
|
2024-05-16 06:52:22 +01:00
|
|
|
- name: Format
|
2024-09-30 22:46:31 +01:00
|
|
|
uses: https://git.kemitix.net/kemitix/rust@v2.3.0
|
2024-05-16 06:52:22 +01:00
|
|
|
with:
|
2024-09-17 09:59:13 +01:00
|
|
|
args: ${{ matrix.toolchain.name }} cargo fmt --all -- --check
|
2024-05-16 06:52:22 +01:00
|
|
|
|
|
|
|
- name: Clippy
|
2024-09-30 22:46:31 +01:00
|
|
|
uses: https://git.kemitix.net/kemitix/rust@v2.3.0
|
2024-05-16 06:52:22 +01:00
|
|
|
with:
|
2024-09-17 09:59:13 +01:00
|
|
|
args: ${{ matrix.toolchain.name }} cargo hack --feature-powerset clippy
|
2024-05-16 06:52:22 +01:00
|
|
|
|
|
|
|
- name: Build
|
2024-09-30 22:46:31 +01:00
|
|
|
uses: https://git.kemitix.net/kemitix/rust@v2.3.0
|
2024-05-16 06:52:22 +01:00
|
|
|
with:
|
2024-09-17 09:59:13 +01:00
|
|
|
args: ${{ matrix.toolchain.name }} cargo hack --feature-powerset build
|
2024-05-16 06:52:22 +01:00
|
|
|
|
|
|
|
- name: Test
|
2024-09-30 22:46:31 +01:00
|
|
|
uses: https://git.kemitix.net/kemitix/rust@v2.3.0
|
2024-05-16 06:52:22 +01:00
|
|
|
with:
|
2024-09-17 09:59:13 +01:00
|
|
|
args: ${{ matrix.toolchain.name }} cargo hack --feature-powerset test
|