diff options
| author | Eugen Wissner <belka@caraus.de> | 2024-07-10 13:22:48 +0200 |
|---|---|---|
| committer | Eugen Wissner <belka@caraus.de> | 2024-07-10 13:22:48 +0200 |
| commit | cf029961e89c3835998725f9b69602a5edf161a0 (patch) | |
| tree | 3f147d0dfa22f833172e62b3eaebc2b70320cc76 /.gitea | |
| parent | 11ab7e18e13a68f3b846b514193f8b2d2a63be42 (diff) | |
| download | graphql-spice-cf029961e89c3835998725f9b69602a5edf161a0.tar.gz | |
Add deriveFromGraphQL
For deriving FromGraphQL instances automatically.
Diffstat (limited to '.gitea')
| -rw-r--r-- | .gitea/workflows/build.yml | 27 |
1 files changed, 4 insertions, 23 deletions
diff --git a/.gitea/workflows/build.yml b/.gitea/workflows/build.yml index 6fe1228..1d02288 100644 --- a/.gitea/workflows/build.yml +++ b/.gitea/workflows/build.yml @@ -7,28 +7,14 @@ on: jobs: audit: - runs-on: haskell + runs-on: buildenv steps: - - name: Set up environment - run: | - apt-get update -y - apt-get upgrade -y - apt-get install -y nodejs pkg-config - uses: actions/checkout@v4 - - name: Install dependencies - run: | - cabal update - cabal install hlint "--constraint=hlint ==3.8" - - run: cabal exec hlint -- src tests + - run: hlint -- src tests test: - runs-on: haskell + runs-on: buildenv steps: - - name: Set up environment - run: | - apt-get update -y - apt-get upgrade -y - apt-get install -y nodejs pkg-config - uses: actions/checkout@v4 - name: Install dependencies run: cabal update @@ -37,13 +23,8 @@ jobs: - run: cabal test --test-show-details=streaming doc: - runs-on: haskell + runs-on: buildenv steps: - - name: Set up environment - run: | - apt-get update -y - apt-get upgrade -y - apt-get install -y nodejs pkg-config - uses: actions/checkout@v4 - name: Install dependencies run: cabal update |
