Skip to content

check system

check system #94

Workflow file for this run

name: test
on:
push:
pull_request:
schedule:
- cron: '0 16 * * *' # UTC 16:00 daily
jobs:
test:
strategy:
fail-fast: false
matrix:
system:
- actions: ubuntu-24.04
nix: x86_64-linux
- actions: ubuntu-24.04-arm
nix: aarch64-linux
version:
- nixpkgs: nixos-24.11
home-manager: release-24.11
- nixpkgs: nixos-unstable
home-manager: master
runs-on: ${{ matrix.system.actions }}
steps:
- run: cat /proc/cpuinfo; curl ipinfo.io; free -h
# - name: checkout
# uses: actions/checkout@v4
# with:
# fetch-depth: 0
# - uses: cachix/install-nix-action@v30
# with:
# nix_path: nixpkgs=channel:${{ matrix.version.nixpkgs }}
# - run: >
# nix flake check
# --keep-going
# --all-systems
# --override-input quadlet-nix "path:$(pwd)"
# --override-input nixpkgs 'github:NixOS/nixpkgs/${{ matrix.version.nixpkgs }}'
# --override-input home-manager 'github:nix-community/home-manager/${{ matrix.version.home-manager }}'
# --override-input test-config "path:$(pwd)/tests/${{ matrix.system.nix }}"
# ./tests