Setup Github CI.
This commit is contained in:
parent
52561496ac
commit
426d650c42
1 changed files with 18 additions and 0 deletions
18
.github/workflows/build.yml
vendored
Normal file
18
.github/workflows/build.yml
vendored
Normal file
|
|
@ -0,0 +1,18 @@
|
|||
name: "Build"
|
||||
on:
|
||||
pull_request:
|
||||
branches:
|
||||
- master_jammy
|
||||
push:
|
||||
branches:
|
||||
- master_jammy
|
||||
jobs:
|
||||
build:
|
||||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
- uses: actions/checkout@v3
|
||||
- uses: cachix/install-nix-action@v18
|
||||
with:
|
||||
nix_path: nixpkgs=channel:nixpkgs-unstable
|
||||
- run: nix build
|
||||
- run: nix flake check
|
||||
Loading…
Add table
Add a link
Reference in a new issue