Skip to content

Commit

Permalink
ci: add check workflow
Browse files Browse the repository at this point in the history
Signed-off-by: Paul Meyer <[email protected]>
  • Loading branch information
katexochen committed Dec 18, 2023
1 parent 7af652a commit 98c7c86
Showing 1 changed file with 24 additions and 0 deletions.
24 changes: 24 additions & 0 deletions .github/workflows/static.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
name: stactic checks

on:
workflow_dispatch:
push:
branches:
- main
pull_request:

jobs:
fmt:
name: check
runs-on: ubuntu-22.04
steps:
- name: Checkout
uses: actions/checkout@f43a0e5ff2bd294095638e18286ca9a3d1956744 # v3.6.0

- name: Install Nix
uses: cachix/install-nix-action@v24
with:
github_access_token: ${{ secrets.GITHUB_TOKEN }}

- name: nix flake check
run: nix -L flake check

0 comments on commit 98c7c86

Please sign in to comment.