Bump minitest from 5.25.1 to 5.25.2 in /tictactoe_ruby in the bundler-minor group #651
Workflow file for this run
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@v4 | |
- name: Setup haskell | |
uses: haskell-actions/setup@v2 | |
with: | |
ghc-version: '9.10.1' | |
- name: Build | |
run: cabal build | |
- name: Test | |
run: cabal test --enable-coverage | |
- name: Archive code coverage results | |
uses: actions/upload-artifact@v4 | |
with: | |
name: code-coverage-report | |
path: ./tictactoe_haskell/dist-newstyle/build/x86_64-linux/ghc-9.10.1/tictactoe-haskell-0.1.0.0/t/testing-tictactoe/hpc/vanilla/html |