Problem 85: Graph isomorphism - add type signatures to where bindings #40
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@v4 | |
- 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@v16 | |
with: | |
mode: check | |
- name: 'Test and Lint' | |
run: .github/run.sh |