neovim-flake/.github/workflows/check-docs.yml

45 lines
1.2 KiB
YAML
Raw Normal View History

2023-04-15 10:36:15 +02:00
name: "Validate flake & check documentation"
2023-04-15 10:34:34 +02:00
on:
pull_request:
workflow_dispatch:
push:
branches:
- main
paths:
- docs/**
jobs:
2023-04-15 10:36:15 +02:00
flake-docs-check:
name: Validate Flake Documentation
2023-04-15 10:34:34 +02:00
runs-on: ubuntu-latest
strategy:
matrix:
package:
- docs
- docs-html
- docs-manpages
- docs-json
steps:
2023-04-15 10:38:51 +02:00
- uses: easimon/maximize-build-space@v6
with:
overprovision-lvm: true
remove-android: true
remove-dotnet: true
remove-haskell: true
- uses: cachix/install-nix-action@v20
with:
extra_nix_config: |
access-tokens = github.com=${{ secrets.GITHUB_TOKEN }}
auto-optimise-store = true
experimental-features = nix-command flakes
nix_path: nixpkgs=channel:nixos-unstable
2023-04-15 10:34:34 +02:00
- uses: actions/checkout@v3
- name: Set default git branch (to reduce log spam)
run: git config --global init.defaultBranch main
- name: Validate Flakes
run: nix flake check
- name: Build neovim-flake with default settings
run: nix build .#${{ matrix.package }} --print-build-logs