name: CI
on:
push:
branches: [main]
pull_request:
workflow_dispatch:
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
jobs:
lint:
name: Lint
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@3d3c42e5aac5ba805825da76410c181273ba90b1
- uses: dtolnay/rust-toolchain@4360b52568e2003a75bf9bc1d59f33a8e3fc893c
with:
toolchain: 1.96.0
components: rustfmt, clippy
- name: Run linting
run: make lint
test:
name: Test
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@3d3c42e5aac5ba805825da76410c181273ba90b1
- uses: dtolnay/rust-toolchain@4360b52568e2003a75bf9bc1d59f33a8e3fc893c
with:
toolchain: 1.96.0
components: rustfmt, clippy
- uses: taiki-e/install-action@82cd3e7658a6f96c86c0234aeeda1748937cb0a1
with:
tool: nextest
- name: Run tests
run: make test
coverage:
name: Coverage
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@3d3c42e5aac5ba805825da76410c181273ba90b1
- uses: dtolnay/rust-toolchain@4360b52568e2003a75bf9bc1d59f33a8e3fc893c
with:
toolchain: 1.96.0
components: rustfmt, clippy
- uses: taiki-e/install-action@82cd3e7658a6f96c86c0234aeeda1748937cb0a1
with:
tool: cargo-tarpaulin
- name: Generate coverage
run: cargo tarpaulin --out xml
- name: Upload to Codecov
uses: codecov/codecov-action@fb8b3582c8e4def4969c97caa2f19720cb33a72f
with:
files: cobertura.xml
token: ${{ secrets.CODECOV_TOKEN }}
all-checks-passed:
name: All checks passed
runs-on: ubuntu-latest
needs: [lint, test]
if: always()
steps:
- name: Verify all checks passed
run: |
if [ "${{ contains(needs.*.result, 'failure') || contains(needs.*.result, 'cancelled') }}" == "true" ]; then
echo "Some checks failed or were cancelled"
exit 1
fi
echo "All checks passed"