configuration.nix/.forgejo/workflows/check.yml
Jalil David Salamé Messina 36c3f568a4
Some checks failed
/ check (push) Successful in 48s
/ build (audiomenu) (push) Successful in 2s
/ build (docs) (push) Successful in 3s
/ build (jpassmenu) (push) Successful in 2s
/ build (nixosConfigurations.vm.config.system.build.toplevel) (push) Successful in 19s
/ build (nvim) (push) Successful in 9s
/ report-size (pull_request) Has been cancelled
wip: report package sizes
Added as a comment to the current pull request
2024-12-15 13:13:49 +01:00

26 lines
662 B
YAML

on:
push:
jobs:
check:
runs-on: nixos
needs: build
steps:
- uses: "https://code.forgejo.org/actions/checkout@v4"
- run: nix --version
- name: Run Checks
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
- name: "Build ${{ matrix.target }}"
run: nix build --print-build-logs '.#${{ matrix.target }}'