Skip to content

chore(deps): bump cachix/install-nix-action from 26 to 27 #78

chore(deps): bump cachix/install-nix-action from 26 to 27

chore(deps): bump cachix/install-nix-action from 26 to 27 #78

name: Check pre-commit
on:
push:
paths:
# Set this to the directory of the template
- pre-commit/**
- .github/workflows/check-pre-commit.yml
workflow_dispatch:
workflow_call:
concurrency:
group: check-pre-commit-${{ github.ref }}
cancel-in-progress: true
jobs:
check:
runs-on: ubuntu-latest
steps:
- uses: cachix/install-nix-action@V27
with:
extra_nix_config: |
access-tokens = github.com=${{ secrets.GITHUB_TOKEN }}
- uses: actions/checkout@v4
with:
path: ./tmp
- run: nix flake new -t ./tmp#pre-commit ./work
- name: Prepare the project
working-directory: work
run: |
git init
git add .
- run: nix develop -L --command pre-commit --version
working-directory: work