configuration.nix/.forgejo/workflows/check.yml
Jalil David Salamé Messina b3754a992d
All checks were successful
/ check (push) Successful in 25s
/ build (audiomenu) (push) Successful in 2s
/ build (docs) (push) Successful in 2s
/ build (jpassmenu) (push) Successful in 2s
/ build (nixosConfigurations.vm.config.system.build.toplevel) (push) Successful in 1s
/ build (nvim) (push) Successful in 12s
/ update-lockfile (push) Has been skipped
[fix] ci: better update commit message
2024-07-20 16:15:51 +02:00

40 lines
1.2 KiB
YAML

on:
push:
schedule:
- cron: '12 5 * * *'
jobs:
check:
runs-on: nixos
steps:
- uses: "https://code.forgejo.org/actions/checkout@v4"
- run: nix --version
- run: nix flake check --keep-going --verbose
build:
runs-on: nixos
strategy:
matrix:
target:
- audiomenu
- docs
- jpassmenu
- nixosConfigurations.vm.config.system.build.toplevel
- nvim
steps:
- uses: "https://code.forgejo.org/actions/checkout@v4"
- run: nix --version
- run: nix build --print-build-logs '.#${{ matrix.target }}'
update-lockfile:
needs: [check build]
runs-on: nixos
if: github.event_name == 'schedule'
steps:
- uses: "https://code.forgejo.org/actions/checkout@v4"
- run: nix --version
- run: nix flake update
- name: nix flake update
run: |
git config user.name 'forgejo-actions'
git config user.email 'forgejo-actions@noreply.salame.cl'
nix flake update --commit-lock-file --option commit-lockfile-summary '[chore] flake.lock: update inputs'
- run: nix flake check --keep-going --verbose
- run: git push