Skip to content

Commit

Permalink
feat(workflows/eval): add flake check
Browse files Browse the repository at this point in the history
  • Loading branch information
ryand56 committed Sep 16, 2024
1 parent eb17b90 commit 5af848a
Showing 1 changed file with 22 additions and 0 deletions.
22 changes: 22 additions & 0 deletions .github/workflows/eval-check.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
name: "Eval"

on:
push:
branches: 'master'
pull_request_target:

jobs:
check:
name: Check
runs-on: ubuntu-latest
steps:
- uses: "actions/checkout@v4"
- uses: "cachix/install-nix-action@V28"
with:
nix_path: nixpkgs=channel:nixpkgs-unstable
- uses: cachix/cachix-action@v15
with:
name: wrangler
authToken: '${{ secrets.CACHIX_AUTH_TOKEN }}'
- name: Check
run: nix flake check -L

0 comments on commit 5af848a

Please sign in to comment.