Files
my-crates/.github/workflows/test.yml
Laika d3b3fdf026
Some checks failed
Cargo test & clippy / task (push) Has been cancelled
Initial commit
2025-11-19 23:08:02 +01:00

31 lines
473 B
YAML

name: Cargo test & clippy
permissions:
contents: read
pull-requests: write
on:
push:
branches: ["main"]
pull_request:
branches: ["main"]
env:
CARGO_TERM_COLOR: always
jobs:
task:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v5
- name: Build
run: cargo build --verbose
- name: Run tests
run: cargo test --verbose --all-features
- name: Run clippy
run: cargo clippy --all-features