1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101
|
---
name: Test
on:
workflow_call:
pull_request:
branches:
- '*'
jobs:
format:
name: Format
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v6
- uses: dtolnay/rust-toolchain@stable
- name: Format
run: cargo fmt --all -- --check
lint:
name: Clippy
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v6
- uses: dtolnay/rust-toolchain@stable
- name: Clippy
run: cargo clippy --all-targets --all-features
check:
name: Check
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v6
- uses: dtolnay/rust-toolchain@stable
- name: Check
run: cargo check
test:
name: Test
strategy:
matrix:
os:
- ubuntu-latest
- macOS-latest
rust:
- stable
runs-on: ${{ matrix.os }}
needs:
- format
- lint
- check
steps:
- uses: actions/checkout@v6
- uses: dtolnay/rust-toolchain@stable
- name: test
run: RUST_TEST_THREADS=1 cargo test
- name: Cleanup orphaned test processes
if: always()
run: |
# Kill any remaining test processes
pkill -9 -f "fork.*debug/deps" || true
# Clean up test directories
rm -rf /tmp/fork_test* || true
coverage:
name: Coverage
runs-on: ubuntu-latest
needs:
- format
- lint
- check
steps:
- uses: actions/checkout@v6
- uses: dtolnay/rust-toolchain@stable
with:
components: llvm-tools-preview
- name: Install cargo-llvm-cov
uses: taiki-e/install-action@v2
with:
tool: cargo-llvm-cov
- name: Generate coverage (lcov)
run: |
RUST_TEST_THREADS=1 cargo llvm-cov --all-features --workspace --lcov --output-path coverage.lcov
- name: Upload to codecov.io
uses: codecov/codecov-action@v5
env:
CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }}
with:
files: coverage.lcov
flags: rust
- name: Coveralls GitHub Action
uses: coverallsapp/github-action@v2
|