Merge pull request #114 from cachix/dependabot/github_actions/cachix/… #372
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 | |
jobs: | |
docs: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: cachix/install-nix-action@v24 | |
- name: Build | |
run: nix-build | |
- name: Link check | |
run: nix-shell --run "make linkcheck" | |