skip/.forgejo/workflows/push-next.yml
Paul Campbell 52f4ea5e61
All checks were successful
Test / build (map[name:nightly]) (push) Successful in 17s
Test / build (map[name:stable]) (push) Successful in 19s
Release Please / Release-plz (push) Successful in 10s
build: remove taplo job
The image doesn't support the checkout step, os can't get the file to verify them.

Will add this in again via kemitix/rust#16
2025-01-12 15:26:36 +00:00

65 lines
1.4 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.0.0
strategy:
matrix:
toolchain:
- name: stable
- name: nightly
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Check TODOs
uses: https://git.kemitix.net/kemitix/forgejo-todo-checker@v1.3.0
- name: Ignored Files
run: |
IGNORED=$(git ls-files --cached -i --exclude-standard)
if [[ "$IGNORED" ]]
then
echo "Ignored files present:\n$IGNORED"
exit 1
fi
- 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: Integration
run: ./test.sh
- name: Mutations
run: cargo +${{ matrix.toolchain.name }} mutants -vV --in-place