Skip to content

Bump to v0.1.0

Bump to v0.1.0 #13

Workflow file for this run

name: CI
on:
push:
pull_request:
jobs:
checks:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v6
- uses: nixbuild/nix-quick-install-action@v34
- name: Run fmt check
run: nix develop --command make fmt-check
- name: Run clippy checks
run: nix develop --command make clippy
- name: Run tests
run: nix develop --command make test