Initial commit
Some checks failed
Cargo test & clippy / task (push) Has been cancelled

This commit is contained in:
2025-02-03 23:33:53 +01:00
commit d3b3fdf026
9 changed files with 711 additions and 0 deletions

30
.github/workflows/test.yml vendored Normal file
View File

@@ -0,0 +1,30 @@
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