configuration.nix/.forgejo/workflows/check.yml
Jalil David Salamé Messina 52407688d0
[fix] ci: remove scheduled workflow
Do it through external means (once GH stops rate limiting me)
2024-08-09 22:59:23 +02:00

23 lines
577 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 --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 }}'