forked from DGNum/infrastructure
16 lines
275 B
YAML
16 lines
275 B
YAML
name: build configuration
|
|
on:
|
|
pull_request:
|
|
branches:
|
|
- main
|
|
|
|
jobs:
|
|
build_configs:
|
|
runs-on: nix
|
|
steps:
|
|
- uses: actions/checkout@v3
|
|
|
|
- name: Build the nodes
|
|
run: |
|
|
# Enter the shell
|
|
nix-shell --run 'colmena build'
|