Commit 34168f46c802e14e9322d97b72da99f31887ff85 Parent: 16dba4c4d0d2047a2cb5f1d2f93aed22f0af21b3 Author: mcol <mcol@posteo.net> Date: 2021-11-26 20:00:58 +0000 Committer: mcol <mcol@posteo.net> Committed: 2021-11-26 20:00:58 +0000 rename ci workflow
.github/workflows/haskell.yml Deleted
@@ -1,33 +0,0 @@ -name: CI - -on: - push: - branches: [ master ] - pull_request: - branches: [ master ] - -jobs: - ci: - runs-on: ubuntu-latest - - steps: - - uses: actions/checkout@v1 - - - uses: haskell/actions/setup@v1 - with: - enable-stack: true - - - uses: actions/cache@v1 - env: - cache-name: cache-stack-modules - with: - path: /home/runner/.stack/ - key: ${{ hashFiles('**/stack.yaml.lock') }} - - - name: Build - run: | - stack --no-terminal --silent build - - - name: Test - run: | - bash test/test.sh
.github/workflows/ci.yaml Added
@@ -0,0 +1,33 @@ +name: CI + +on: + push: + branches: [ master ] + pull_request: + branches: [ master ] + +jobs: + ci: + runs-on: ubuntu-latest + + steps: + - uses: actions/checkout@v1 + + - uses: haskell/actions/setup@v1 + with: + enable-stack: true + + - uses: actions/cache@v1 + env: + cache-name: cache-stack-modules + with: + path: /home/runner/.stack/ + key: ${{ hashFiles('**/stack.yaml.lock') }} + + - name: Build + run: | + stack --no-terminal --silent build + + - name: Test + run: | + bash test/test.sh