From 8c9bb780e8b56e4dba57346fd59173c7bc8389b2 Mon Sep 17 00:00:00 2001 From: pdlla Date: Sun, 3 Dec 2023 13:26:15 -0800 Subject: [PATCH] delete old haskkell.yml --- .github/workflows/haskell.yml | 43 ----------------------------------- 1 file changed, 43 deletions(-) delete mode 100644 .github/workflows/haskell.yml diff --git a/.github/workflows/haskell.yml b/.github/workflows/haskell.yml deleted file mode 100644 index 615ea48d..00000000 --- a/.github/workflows/haskell.yml +++ /dev/null @@ -1,43 +0,0 @@ -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: actions/setup-haskell@v1 - with: - ghc-version: '8.10.3' - cabal-version: '3.2' - - - 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