mirror of
https://github.com/foo-dogsquared/nixos-config.git
synced 2025-01-31 04:58:01 +00:00
5f83560d02
Bumps [DeterminateSystems/flake-checker-action](https://github.com/determinatesystems/flake-checker-action) from 5 to 8. - [Release notes](https://github.com/determinatesystems/flake-checker-action/releases) - [Commits](https://github.com/determinatesystems/flake-checker-action/compare/v5...v8) --- updated-dependencies: - dependency-name: DeterminateSystems/flake-checker-action dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
26 lines
697 B
YAML
26 lines
697 B
YAML
name: "Check flake outputs"
|
|
on:
|
|
pull_request:
|
|
push:
|
|
branches:
|
|
- master
|
|
- develop
|
|
schedule:
|
|
- cron: '5 10 * * 4' # At 10:05 on Thursday.
|
|
jobs:
|
|
check-outputs:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/checkout@v4
|
|
- uses: DeterminateSystems/nix-installer-action@v13
|
|
- name: Check flake lockfile
|
|
uses: DeterminateSystems/flake-checker-action@v8
|
|
- name: Check flake outputs
|
|
run: |
|
|
nix flake check --impure --accept-flake-config --keep-going
|
|
env:
|
|
NIXPKGS_ALLOW_BROKEN: "1"
|
|
NIXPKGS_ALLOW_UNFREE: "1"
|
|
NIXPKGS_ALLOW_INSECURE: "1"
|
|
NIXPKGS_ALLOW_UNSUPPORTED_SYSTEM: "1"
|