mirror of
https://github.com/srid/nixos-config.git
synced 2025-12-26 23:14:57 +08:00
18 lines
341 B
YAML
18 lines
341 B
YAML
name: "CI"
|
|
|
|
on:
|
|
push:
|
|
branches:
|
|
- master
|
|
pull_request:
|
|
|
|
jobs:
|
|
nix:
|
|
runs-on: ${{ matrix.system }}
|
|
strategy:
|
|
matrix:
|
|
# system: [x86_64-linux, aarch64-darwin, aarch64-linux]
|
|
system: [x86_64-linux]
|
|
steps:
|
|
- uses: actions/checkout@v4
|
|
- run: om ci run --systems "${{ matrix.system }}"
|