[feat] ci: add forgejo actions
All checks were successful
/ check (push) Successful in 20s
/ build (vm) (push) Successful in 1s

This commit is contained in:
Jalil David Salamé Messina 2024-06-08 22:28:27 +02:00
parent 89c614818f
commit bb9e7b1139
Signed by: jalil
GPG key ID: F016B9E770737A0B
5 changed files with 57 additions and 19 deletions

View file

@ -0,0 +1,18 @@
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:
machine:
- vm
steps:
- uses: https://code.forgejo.org/actions/checkout@v4
- run: nix --version
- run: nix build --print-build-logs '.#nixosConfigurations.${{ matrix.machine }}.config.system.build.toplevel'