chore(deps): bump cachix/install-nix-action from 25 to 26 #90
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: CI | |
on: | |
pull_request: | |
push: | |
paths-ignore: | |
- '**.md' | |
jobs: | |
lint: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: purcell/setup-emacs@master | |
with: | |
version: 29.1 | |
- uses: actions/checkout@v4 | |
- name: Run tests | |
run: make package-lint | |
build: | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
emacs_version: | |
- 24.3 | |
- 24.5 | |
- 25.1 | |
- 25.3 | |
- 26.1 | |
- 26.3 | |
- 27.1 | |
- 27.2 | |
- 28.1 | |
- 28.2 | |
- 29.1 | |
- snapshot | |
steps: | |
- uses: cachix/install-nix-action@v26 | |
with: | |
nix_path: nixpkgs=channel:nixos-unstable | |
- uses: purcell/setup-emacs@master | |
with: | |
version: ${{ matrix.emacs_version }} | |
- uses: actions/checkout@v4 | |
- name: Install deps for tests | |
run: nix-env -i shfmt -f '<nixpkgs>' | |
- name: Run tests | |
run: make compile test |