2023-01-13 08:16:15 +00:00
|
|
|
name: "Check flake outputs"
|
2023-07-14 11:28:28 +00:00
|
|
|
on:
|
|
|
|
pull_request:
|
|
|
|
push:
|
2023-07-16 07:39:33 +00:00
|
|
|
branches:
|
|
|
|
- master
|
|
|
|
- develop
|
2023-07-14 11:28:28 +00:00
|
|
|
schedule:
|
2023-07-25 04:05:54 +00:00
|
|
|
- cron: '5 10 * * 4' # At 10:05 on Thursday.
|
2023-01-13 08:16:15 +00:00
|
|
|
jobs:
|
|
|
|
check-outputs:
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
2023-04-24 03:32:04 +00:00
|
|
|
- uses: actions/checkout@v3
|
2023-07-14 11:10:35 +00:00
|
|
|
- uses: DeterminateSystems/nix-installer-action@v4
|
2023-07-14 11:29:35 +00:00
|
|
|
- name: Check flake lockfile
|
2023-07-20 08:06:54 +00:00
|
|
|
uses: DeterminateSystems/flake-checker-action@v5
|
2023-01-13 08:16:15 +00:00
|
|
|
- name: Check flake outputs
|
2023-07-15 14:32:04 +00:00
|
|
|
run: |
|
2023-07-20 03:39:17 +00:00
|
|
|
nix flake check --impure --no-build
|
2023-07-20 02:39:26 +00:00
|
|
|
env:
|
|
|
|
NIXPKGS_ALLOW_BROKEN: "1"
|
|
|
|
NIXPKGS_ALLOW_UNFREE: "1"
|