Initial commit
Some checks failed
Cargo test & clippy / build (push) Has been cancelled
Cargo test & clippy / rust-clippy-analyze (push) Has been cancelled
Cargo security audit / audit (push) Failing after 4s

This commit is contained in:
2024-03-02 16:04:35 +01:00
commit 16dd18b400
21 changed files with 3179 additions and 0 deletions

32
.github/workflows/cargo-test.yml vendored Normal file
View File

@@ -0,0 +1,32 @@
name: Cargo test & clippy
on:
push:
branches: ["main"]
pull_request:
branches: ["main"]
env:
CARGO_TERM_COLOR: always
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v5
- name: Build
run: cargo build --verbose
- name: Run tests
run: cargo test --verbose
rust-clippy-analyze:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v5
- name: Run rust-clippy
run: cargo clippy --all-features