mirror of
https://github.com/foo-dogsquared/nixos-config.git
synced 2025-01-31 10:58:02 +00:00
6009a6e3b0
Bumps [DeterminateSystems/flake-checker-action](https://github.com/determinatesystems/flake-checker-action) from 4 to 5. - [Release notes](https://github.com/determinatesystems/flake-checker-action/releases) - [Commits](https://github.com/determinatesystems/flake-checker-action/compare/v4...v5) --- 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>
24 lines
584 B
YAML
24 lines
584 B
YAML
name: "Check flake outputs"
|
|
on:
|
|
pull_request:
|
|
push:
|
|
branches:
|
|
- master
|
|
- develop
|
|
schedule:
|
|
- cron: '30 11 * * *' # At 11:30 everyday.
|
|
jobs:
|
|
check-outputs:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/checkout@v3
|
|
- uses: DeterminateSystems/nix-installer-action@v4
|
|
- name: Check flake lockfile
|
|
uses: DeterminateSystems/flake-checker-action@v5
|
|
- name: Check flake outputs
|
|
run: |
|
|
nix flake check --impure --no-build
|
|
env:
|
|
NIXPKGS_ALLOW_BROKEN: "1"
|
|
NIXPKGS_ALLOW_UNFREE: "1"
|