summaryrefslogtreecommitdiff
path: root/.gitea/workflows/build.yml
diff options
context:
space:
mode:
Diffstat (limited to '.gitea/workflows/build.yml')
-rw-r--r--.gitea/workflows/build.yml33
1 files changed, 0 insertions, 33 deletions
diff --git a/.gitea/workflows/build.yml b/.gitea/workflows/build.yml
deleted file mode 100644
index 6a130bb..0000000
--- a/.gitea/workflows/build.yml
+++ /dev/null
@@ -1,33 +0,0 @@
-name: Build
-
-on:
- push:
- branches:
- - '**'
- pull_request:
- branches: [master]
-
-jobs:
- audit:
- container: buildenv:6
- steps:
- - uses: actions/checkout@v6
- - run: hlint -- src tests
-
- test:
- container: buildenv:6
- steps:
- - uses: actions/checkout@v6
- - name: Install dependencies
- run: cabal update
- - name: Prepare system
- run: cabal build graphql-test
- - run: cabal test --test-show-details=streaming
-
- doc:
- container: buildenv:6
- steps:
- - uses: actions/checkout@v6
- - name: Install dependencies
- run: cabal update
- - run: cabal haddock --enable-documentation