Skip to content

update gha

update gha #56

Workflow file for this run

name: Haskell CI
on:
push:
branches: [ "potato" ]
pull_request:
branches: [ "potato" ]
permissions:
contents: read
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: haskell-actions/setup@v2
with:
ghc-version: '9.2.5'
cabal-version: '3.10.2.0'
- name: Cache
uses: actions/cache@v3
env:
cache-name: cache-cabal
with:
path: ~/.cabal
key: ${{ runner.os }}-build-${{ env.cache-name }}-${{ hashFiles('**/*.cabal') }}-${{ hashFiles('**/cabal.project') }}
restore-keys: |
${{ runner.os }}-build-${{ env.cache-name }}-
${{ runner.os }}-build-
${{ runner.os }}-
- name: Install dependencies
run: |
cabal update
cabal build --only-dependencies --enable-tests --enable-benchmarks
- name: Build
run: cabal build --enable-tests --enable-benchmarks all
- name: Run tests
run: cabal test all --enable-tests
parse-cabal-file:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: haskell-actions/parse-cabal-file@v1
id: cabal_file
with:
cabal_file: my-library.cabal
- run: echo ${{ steps.cabal_file.outputs.version }}
hackage-upload-candidate:
runs-on: ubuntu-latest
steps:
- uses: haskell-actions/hackage-publish@v1
with:

Check failure on line 61 in .github/workflows/haskell.yml

View workflow run for this annotation

GitHub Actions / .github/workflows/haskell.yml

Invalid workflow file

You have an error in your yaml syntax on line 61
hackageToken: ${{ secrets.HACKAGE_AUTH_TOKEN }}
packagesPath: ${{ runner.temp }}/packages
docsPath: ${{ runner.temp }}/docs
publish: false