build: Add package bounds #74
This file contains 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: Nix Build | |
on: | |
- push | |
- pull_request | |
permissions: | |
contents: read | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: cachix/install-nix-action@v22 | |
with: | |
github_access_token: ${{ secrets.GITHUB_TOKEN }} | |
extra_nix_config: | | |
experimental-features = nix-command flakes | |
allow-import-from-derivation = true | |
accept-flake-config = true | |
- uses: cachix/cachix-action@v12 | |
with: | |
name: sgillespie | |
authToken: '${{ secrets.CACHIX_AUTH_TOKEN }}' | |
- name: Build executable | |
run: nix build . | |
- name: Run tests | |
run: | | |
nix build \ | |
.#checks.x86_64-linux."gibberish:test:spec" \ | |
.#checks.x86_64-linux."gibberish:test:golden" | |
- name: Run static checks | |
run: nix build .#checks.x86_64-linux.fourmoluCheck .#checks.x86_64-linux.hlintCheck | |
- name: Run benchmarks | |
run: nix build .#gibberish:bench:main |