Skip to content

docs: add LICENSE, SECURITY, CONTRIBUTING and README badges #3

docs: add LICENSE, SECURITY, CONTRIBUTING and README badges

docs: add LICENSE, SECURITY, CONTRIBUTING and README badges #3

Workflow file for this run

name: CI
on:
push:
branches: [main, master]
pull_request:
branches: [main, master]
jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: dtolnay/rust-toolchain@stable
with:
components: clippy, rustfmt
- run: cargo test
- run: cargo clippy -- -D warnings
- run: cargo fmt --check