configuration.nix/.forgejo/workflows/check.yml
Jalil David Salamé Messina 36b1967187
All checks were successful
/ check (push) Successful in 24s
/ build (docs) (push) Successful in 2s
/ build (nixosConfigurations.vm.config.system.build.toplevel) (push) Successful in 1s
/ build (nvim) (push) Successful in 11s
[ci] forgejo: build more outputs
2024-06-08 22:46:14 +02:00

20 lines
518 B
YAML

on: [push]
jobs:
check:
runs-on: nixos
steps:
- uses: https://code.forgejo.org/actions/checkout@v4
- run: nix --version
- run: nix flake check --keep-going
build:
runs-on: nixos
strategy:
matrix:
target:
- docs
- nvim
- nixosConfigurations.vm.config.system.build.toplevel
steps:
- uses: https://code.forgejo.org/actions/checkout@v4
- run: nix --version
- run: nix build --print-build-logs '.#${{ matrix.target }}'