Proper rounding implementation #9
Workflow file for this run
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: "Check Flake" | |
on: [ pull_request, push ] | |
jobs: | |
tests: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: cachix/install-nix-action@v22 | |
with: | |
github_access_token: ${{ secrets.GITHUB_TOKEN }} | |
- name: Check whether Flake evaluates | |
run: nix flake check | |
- name: Check whether dsa41held builds | |
run: nix build .#dsa41held | |
- name: Check whether webui builds | |
run: nix build .#dsa41held_webui |