rust/.forgejo/workflows/test.yml
Paul Campbell 2118c05794
Some checks failed
/ test (map[name:nightly]) (push) Failing after 2m49s
/ test (map[name:stable]) (push) Successful in 6s
/ test (map[name:v1.81.0]) (push) Failing after 4s
chore(build): bump rust action to v2.6.0-rc-2
2025-01-11 19:37:52 +00:00

46 lines
1.1 KiB
YAML

on:
push:
branches:
- next
jobs:
test:
runs-on: docker
strategy:
matrix:
toolchain:
- name: stable
- name: nightly
- name: v1.81.0
steps:
- uses: actions/checkout@v4
- name: Machete
uses: https://git.kemitix.net/kemitix/rust@v2.6.0-rc2
with:
args: cargo machete
- name: Format
uses: https://git.kemitix.net/kemitix/rust@v2.6.0-rc2
with:
args: ${{ matrix.toolchain.name }} cargo fmt --check
- name: Clippy
uses: https://git.kemitix.net/kemitix/rust@v2.6.0-rc2
with:
args: ${{ matrix.toolchain.name }} cargo clippy
- name: Test
uses: https://git.kemitix.net/kemitix/rust@v2.6.0-rc2
with:
args: ${{ matrix.toolchain.name }} cargo test
- name: Build
uses: https://git.kemitix.net/kemitix/rust@v2.6.0-rc2
with:
args: ${{ matrix.toolchain.name }} cargo build
- name: Run
uses: https://git.kemitix.net/kemitix/rust@v2.6.0-rc2
with:
args: ${{ matrix.toolchain.name }} cargo run