Bump to v0.1.0 #12
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 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 |