Performed little cleanup #25
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: "Test PRs" | |
on: | |
workflow_dispatch: | |
pull_request: | |
branches: | |
- main | |
paths-ignore: | |
- '.github/**' | |
- '.vscode/**' | |
- 'docs/**' | |
push: | |
branches: | |
- main | |
paths-ignore: | |
- '.github/**' | |
- '.vscode/**' | |
- 'docs/**' | |
jobs: | |
flake-check: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Check Nix flake inputs against policy | |
uses: DeterminateSystems/flake-checker-action@v5 | |
- name: Install Nix | |
uses: DeterminateSystems/nix-installer-action@v9 | |
- name: Prepare nix cache | |
uses: DeterminateSystems/magic-nix-cache-action@v3 | |
- name: Test | |
run: | | |
nix flake check --log-format raw |