Skip to content

actions: bump actions/checkout from 2 to 4 #17

actions: bump actions/checkout from 2 to 4

actions: bump actions/checkout from 2 to 4 #17

Workflow file for this run

name: Format
on:
- push
- pull_request
jobs:
format-check:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: cachix/install-nix-action@v20
with:
github_access_token: ${{ secrets.GITHUB_TOKEN }}
- name: Run formatter
run: nix fmt
- name: Check for changes
run: git diff --color=always --exit-code