Merge pull request #480 from typelevel/dec27 #243
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@v26 | |
- 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 |