1
0
Fork 0
mirror of https://github.com/NixOS/nix.dev.git synced 2024-10-18 14:32:43 -04:00
nix.dev/.github/workflows/ci.yml

24 lines
490 B
YAML
Raw Normal View History

2020-05-17 04:59:35 -04:00
name: "CI"
on:
- pull_request
- push
jobs:
docs:
2021-06-06 07:02:04 -04:00
runs-on: ubuntu-latest
steps:
2021-12-06 11:37:42 -05:00
- uses: actions/checkout@v2
with:
fetch-depth: 0
- uses: cachix/install-nix-action@v16
2021-06-06 07:02:04 -04:00
with:
nix_path: nixpkgs=channel:nixos-unstable
2021-12-10 09:27:09 -05:00
- uses: cachix/cachix-action@v10
with:
name: nix-dev
authToken: '${{ secrets.CACHIX_AUTH_TOKEN }}'
2021-06-07 12:34:54 -04:00
- name: Build
run: nix-build
2021-08-19 04:01:13 -04:00
- name: Linkcheck
run: nix-shell --run "make linkcheck"