This repository has been archived by the owner on Nov 1, 2024. It is now read-only.
CompatHelper: bump compat for Turing to 0.34 for package turing, (dro… #77
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Pre Commit Checks | |
on: | |
push: | |
branches: | |
- master | |
- main | |
pull_request: | |
branches: | |
- master | |
- main | |
jobs: | |
build-release: | |
name: Pre Commit Checks | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout repository | |
uses: actions/checkout@v4 | |
- name: Install Nix | |
uses: DeterminateSystems/nix-installer-action@v13 | |
- name: Cache Nix artifacts | |
uses: DeterminateSystems/magic-nix-cache-action@v7 | |
- name: Nix pre-commit check | |
run: nix develop -L . --command bash -c 'pre-commit run --all-files' |