Bump cachix/cachix-action from 13 to 14 #204
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: cachix | |
on: | |
pull_request: | |
push: | |
branches: | |
- main | |
jobs: | |
build: | |
runs-on: ${{ matrix.os }} | |
strategy: | |
matrix: | |
os: | |
- macos-latest | |
- ubuntu-latest | |
steps: | |
- uses: actions/[email protected] | |
- name: "Install Nix️" | |
uses: cachix/install-nix-action@v24 | |
- name: "Install Cachix️" | |
uses: cachix/cachix-action@v14 | |
with: | |
name: typelevel | |
authToken: '${{ secrets.CACHIX_AUTH_TOKEN }}' | |
- name: "Build dev shell" | |
run: nix develop -c true |