ci: bump cachix/install-nix-action from 27 to 28 in the actions group #104
Workflow file for this run
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: cicd | |
on: | |
push: | |
pull_request: | |
branches: | |
- '**:**' | |
jobs: | |
check: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: cachix/install-nix-action@V28 | |
- run: nix flake check | |
build: | |
name: build | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v4 | |
- uses: cachix/install-nix-action@V28 | |
- run: nix build | |
- run: nix develop -c sh -c 'tree-sitter generate --no-bindings && tree-sitter test' |