Swapped to unordered_set #192
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
# This workflow will run the tests on the haskell version of tictactoe | |
name: haskell | |
on: | |
push: | |
branches: [main] | |
pull_request: | |
branches: [main] | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
defaults: | |
run: | |
working-directory: ./tictactoe_haskell | |
steps: | |
- name: Checkout repo | |
uses: actions/checkout@v3 | |
- name: CSetup haskell | |
uses: haskell/actions/setup@v2 | |
with: | |
ghc-version: '9.4.2' # Exact version of ghc to use | |
- name: Build | |
run: cabal build | |
- name: Test | |
run: cabal test --enable-coverage | |
- name: Archive code coverage results | |
uses: actions/upload-artifact@v3 | |
with: | |
name: code-coverage-report | |
path: ./tictactoe_haskell/dist-newstyle/build/x86_64-linux/ghc-9.4.2/tictactoe-haskell-0.1.0.0/hpc/vanilla/html/tictactoe-haskell-0.1.0.0 |