diff options
author | Tad Fisher <tadfisher@gmail.com> | 2022-02-12 17:26:38 -0800 |
---|---|---|
committer | Tad Fisher <129148+tadfisher@users.noreply.github.com> | 2022-02-12 17:31:32 -0800 |
commit | e0a023df7ebacb241ccd13dfe02a498e7c32cfe6 (patch) | |
tree | 18658abdfb043a2a7196253b97b8e1c4decf2f7b /.github/workflows | |
parent | 9a7f7c91cd8d36f55f21ee6175eb400c35eb8b36 (diff) | |
download | pass-otp-e0a023df7ebacb241ccd13dfe02a498e7c32cfe6.tar.gz pass-otp-e0a023df7ebacb241ccd13dfe02a498e7c32cfe6.zip |
Add Github workflow
Diffstat (limited to '.github/workflows')
-rw-r--r-- | .github/workflows/ci.yml | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml new file mode 100644 index 0000000..caa1492 --- /dev/null +++ b/.github/workflows/ci.yml @@ -0,0 +1,16 @@ +name: CI +on: + workflow_dispatch: + pull_request: + +jobs: + build: + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v2 + - uses: nixbuild/nix-quick-install-action@v9 + with: + nix_version: 2.4 + nix_conf: experimental-features = nix-command flakes + - name: nix build + run: nix -L build .# |