Iceland Jack's categorical functor proposal #301
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: nix:build | |
on: | |
pull_request: | |
push: | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout 🛎️ | |
uses: actions/checkout@v2.4.0 | |
- name: Install Nix ❄ | |
uses: cachix/install-nix-action@v20 | |
with: | |
extra_nix_config: | | |
access-tokens = github.com=${{ secrets.GITHUB_TOKEN }} | |
- name: Link Cachix 🔌 | |
uses: cachix/cachix-action@v10 | |
with: | |
name: '${{ vars.CACHIX_CACHE_NAME }}' | |
authToken: '${{ secrets.CACHIX_AUTH_TOKEN }}' | |
- name: Deploy 🚀 | |
run: nix build |