18a253e433
Some checks are pending
Test / build (map[name:nightly]) (pull_request) Successful in 3m24s
Test / build (map[name:stable]) (pull_request) Successful in 3m49s
Release Please / Release-plz (push) Successful in 8s
Test / build (map[name:nightly]) (push) Waiting to run
Test / build (map[name:stable]) (push) Waiting to run
62 lines
1.3 KiB
YAML
62 lines
1.3 KiB
YAML
name: Test
|
|
|
|
on:
|
|
push:
|
|
branches:
|
|
- next
|
|
pull_request:
|
|
branches:
|
|
- main
|
|
workflow_dispatch:
|
|
|
|
env:
|
|
CARGO_TERM_COLOR: always
|
|
|
|
jobs:
|
|
build:
|
|
runs-on: docker
|
|
|
|
container:
|
|
image:
|
|
git.kemitix.net/kemitix/rust:v3.1.0
|
|
|
|
strategy:
|
|
matrix:
|
|
toolchain:
|
|
- name: stable
|
|
- name: nightly
|
|
|
|
steps:
|
|
- name: Checkout
|
|
uses: actions/checkout@v4
|
|
|
|
- name: Ignored Files
|
|
run: |
|
|
IGNORED=$(git ls-files --cached -i --exclude-standard)
|
|
if [ -n "$IGNORED" ]
|
|
then
|
|
echo "Ignored files present:\n$IGNORED"
|
|
exit 1
|
|
fi
|
|
|
|
- name: Check TODOs
|
|
uses: https://git.kemitix.net/kemitix/forgejo-todo-checker@v1.3.0
|
|
|
|
- name: Machete
|
|
run: cargo +${{ matrix.toolchain.name }} machete
|
|
|
|
- name: Format
|
|
run: cargo +${{ matrix.toolchain.name }} fmt --all --check
|
|
|
|
- name: Clippy
|
|
run: cargo +${{ matrix.toolchain.name }} hack --feature-powerset clippy
|
|
|
|
- name: Build
|
|
run: cargo +${{ matrix.toolchain.name }} hack --feature-powerset build
|
|
|
|
- name: Test
|
|
run: cargo +${{ matrix.toolchain.name }} hack --feature-powerset test
|
|
|
|
- name: Mutations
|
|
run: cargo +${{ matrix.toolchain.name }} mutants -vV --in-place
|
|
|