diff options
Diffstat (limited to 'users/grfn/xanthous/.github/workflows/haskell.yml')
-rw-r--r-- | users/grfn/xanthous/.github/workflows/haskell.yml | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/users/grfn/xanthous/.github/workflows/haskell.yml b/users/grfn/xanthous/.github/workflows/haskell.yml new file mode 100644 index 000000000000..df82de3e8caf --- /dev/null +++ b/users/grfn/xanthous/.github/workflows/haskell.yml @@ -0,0 +1,15 @@ +name: Haskell CI + +on: [push] + +jobs: + build: + + runs-on: ubuntu-latest + + steps: + - uses: actions/checkout@v1 + - name: Nix Build + with: + args: default.nix --arg failOnWarnings true + uses: ./.github/actions/nix-build |