mirror of
https://github.com/xmonad/xmonad.git
synced 2025-05-19 00:20:22 -07:00
I don't know what these are but I hope reverting to what cachix/install-nix-action's documentation recommends will fix the errors we're getting with presumably old Nix on new Ubuntu GitHub Actions runners.
22 lines
426 B
YAML
22 lines
426 B
YAML
name: Nix
|
|
|
|
on:
|
|
push:
|
|
pull_request:
|
|
|
|
jobs:
|
|
build:
|
|
runs-on: ubuntu-latest
|
|
name: Nix Flake - Linux
|
|
permissions:
|
|
contents: read
|
|
steps:
|
|
- name: Install Nix
|
|
uses: cachix/install-nix-action@v31
|
|
with:
|
|
github_access_token: ${{ secrets.GITHUB_TOKEN }}
|
|
- name: Clone project
|
|
uses: actions/checkout@v4
|
|
- name: Build
|
|
run: nix build --print-build-logs
|