fix: allow brockman to access brockman group files #255
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: CI | |
on: [push, pull_request] | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v1 | |
- name: Install Nix | |
uses: cachix/install-nix-action@v16 | |
- name: Check formatting | |
run: | | |
dpkg --print-architecture | |
nix run .#check-formatting | |
- name: Validate configs | |
run: nix run .#check-configs | |
- name: Build | |
run: nix build .#vm --impure --dry-run |