summaryrefslogtreecommitdiff
path: root/.gitea/workflows/build.yml
diff options
context:
space:
mode:
authorEugen Wissner <belka@caraus.de>2026-06-01 10:28:29 +0200
committerEugen Wissner <belka@caraus.de>2026-06-01 10:28:29 +0200
commita090a5d00ceae40369451a58f9a0384bb94e8ff6 (patch)
treef16d26d19d968e27291132c1981a477cd9c79605 /.gitea/workflows/build.yml
parenta2a04b394b35b311655159fd8a2d9c31db93e579 (diff)
downloadgraphql-a090a5d00ceae40369451a58f9a0384bb94e8ff6.tar.gz
Remove actions
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 c243442..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 --enable-tests
- - run: cabal test --test-show-details=streaming --enable-tests
-
- doc:
- container: buildenv:6
- steps:
- - uses: actions/checkout@v6
- - name: Install dependencies
- run: cabal update
- - run: cabal haddock --enable-documentation