feat: Proper code generation and a runtime #109
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: Check Format, Build and Test | |
| on: | |
| pull_request: | |
| push: | |
| branches: main | |
| jobs: | |
| checks: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - uses: cachix/install-nix-action@v26 | |
| with: | |
| nix_path: nixpkgs=channel:nixos-unstable | |
| - name: Format Check | |
| run: nix develop --command bash -c "task format -- --verify-no-changes" | |
| - name: Build Check | |
| run: nix develop --command bash -c "task build" | |
| - name: Test | |
| run: nix develop --command bash -c "task test" |