22 lines
327 B
YAML
22 lines
327 B
YAML
"on":
|
|
pull_request:
|
|
workflow_dispatch:
|
|
push:
|
|
branches:
|
|
- main
|
|
tags:
|
|
- "*"
|
|
|
|
jobs:
|
|
build:
|
|
runs-on: nix-latest
|
|
strategy:
|
|
matrix:
|
|
arch:
|
|
- x86
|
|
- ucrt
|
|
steps:
|
|
- uses: actions/checkout@v6
|
|
- name: Build
|
|
run: nix run -L ".#${{ matrix.arch }}"
|