Implement P33 as pointfree #32
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: CI | |
on: [push, workflow_dispatch] | |
jobs: | |
build-and-test: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- name: 'Install Stack' | |
uses: haskell-actions/setup@v2 | |
with: | |
enable-stack: true | |
- name: 'Install HLint' | |
uses: haskell-actions/hlint-setup@v2 | |
- name: 'Check Formatting' | |
uses: haskell-actions/run-ormolu@v14 | |
with: | |
mode: check | |
- name: 'Test and Lint' | |
run: .github/run.sh |