20 lines
366 B
YAML
20 lines
366 B
YAML
name: build configuration
|
|
on:
|
|
pull_request:
|
|
types: [opened, synchronize, edited, reopened]
|
|
branches:
|
|
- main
|
|
push:
|
|
branches:
|
|
- main
|
|
|
|
jobs:
|
|
build_krz01:
|
|
runs-on: nix
|
|
steps:
|
|
- uses: actions/checkout@v3
|
|
|
|
- name: Build krz01
|
|
run: |
|
|
# Enter the shell
|
|
nix-shell --run 'colmena build --on krz01'
|