Don't hardcode PATH (#7) #24
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: validate | |
on: | |
push: | |
branches: [main] | |
pull_request: | |
branches: '**' | |
jobs: | |
validate: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: cachix/install-nix-action@v22 | |
- name: build | |
run: NIXPKGS_ALLOW_UNFREE=1 nix build --impure | |
- name: check flake | |
run: NIXPKGS_ALLOW_UNFREE=1 nix flake check --impure | |
- name: show flake output attributes | |
run: nix flake show | |
- name: show flake metadata | |
run: nix flake metadata | |
- name: launcher version | |
run: ./result/bin/launcher version | |
- name: osqueryd version | |
run: ./result/bin/osqueryd --version |