Paul Campbell
3699733e32
- Replace the woodpecker config with forgejo actions. - Add issue number to TODOs to pass CI check - Remove special clang/mold linker commands - Remove docker builder - Add lints.rust.unexoected_cfgs to allo tarpaulin_include - fix: revert upgrade to secrecy 0.10
53 lines
1.2 KiB
YAML
53 lines
1.2 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: Check TODOs
|
|
uses: kemitix/todo-checker@v1.1.0
|
|
|
|
- name: Machete
|
|
uses: https://git.kemitix.net/kemitix/rust@v2.3.0
|
|
with:
|
|
args: ${{ matrix.toolchain.name }} cargo machete
|
|
|
|
- name: Format
|
|
uses: https://git.kemitix.net/kemitix/rust@v2.3.0
|
|
with:
|
|
args: ${{ matrix.toolchain.name }} cargo fmt --all -- --check
|
|
|
|
- name: Clippy
|
|
uses: https://git.kemitix.net/kemitix/rust@v2.3.0
|
|
with:
|
|
args: ${{ matrix.toolchain.name }} cargo hack --feature-powerset clippy
|
|
|
|
- name: Build
|
|
uses: https://git.kemitix.net/kemitix/rust@v2.3.0
|
|
with:
|
|
args: ${{ matrix.toolchain.name }} cargo hack --feature-powerset build
|
|
|
|
- name: Test
|
|
uses: https://git.kemitix.net/kemitix/rust@v2.3.0
|
|
with:
|
|
args: ${{ matrix.toolchain.name }} cargo hack --feature-powerset test
|
|
|