update readme #38
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
on: | |
push: | |
pull_request: | |
jobs: | |
ci: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: DeterminateSystems/nix-installer-action@main | |
with: | |
diagnostic-endpoint: "" | |
- uses: DeterminateSystems/magic-nix-cache-action@main | |
with: | |
diagnostic-endpoint: "" | |
- name: "Check evaluation" | |
run: nix flake check --all-systems | |
- name: "Run unit-tests" | |
run: nix run github:nix-community/nix-unit -- --flake .#tests | |
- name: "Do linting" | |
run: nix run nixpkgs#statix -- check . | |
- name: "Check formatting" | |
run: nix fmt -- --check . |