Skip to content

Commit

Permalink
Enable flake CI workflow checks (#17)
Browse files Browse the repository at this point in the history
Ref #10 

This PR only handles the workflow for basic Nix related checks.
  • Loading branch information
andrewvious authored Aug 12, 2024
1 parent 03baf00 commit af5c3f5
Showing 1 changed file with 45 additions and 0 deletions.
45 changes: 45 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,45 @@
name: Pull Request
on:
pull_request:
branches:
- master
concurrency:
group: ${{ github.head_ref || github.run_id }}
cancel-in-progress: true

permissions: read-all

jobs:
nix-flake-check:
name: Nix Flake Check
runs-on: ubuntu-latest
permissions:
id-token: "write"
contents: "read"
steps:
- uses: actions/checkout@v4
- uses: DeterminateSystems/nix-installer-action@main
- uses: DeterminateSystems/magic-nix-cache-action@main
- uses: DeterminateSystems/flake-checker-action@main
- run: nix flake check --all-systems -L

nix-flake-devShell-check:
name: Nix devShell Check
runs-on: ubuntu-latest
permissions:
id-token: "write"
contents: "read"
steps:
- uses: actions/checkout@v4
- uses: DeterminateSystems/nix-installer-action@main
- uses: DeterminateSystems/magic-nix-cache-action@main
- run: nix develop

nix-flake-fmt-check:
name: Nix Format Check
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: DeterminateSystems/nix-installer-action@main
- uses: DeterminateSystems/magic-nix-cache-action@main
- run: nix fmt --accept-flake-config -- --check .

0 comments on commit af5c3f5

Please sign in to comment.