Bump minitest from 5.25.1 to 5.25.2 in /tictactoe_ruby in the bundler-minor group #431
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 compile the cobol version of tictactoe | |
name: cobol | |
on: | |
push: | |
branches: [main] | |
pull_request: | |
branches: [main] | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
defaults: | |
run: | |
working-directory: ./tictactoe_cobol | |
steps: | |
- name: Checkout repo | |
uses: actions/checkout@v4 | |
- name: Setup Cobol | |
uses: fabasoad/setup-cobol-action@main | |
- name: Compile. | |
run: | | |
cobc -x tictactoe_cobol.cob | |
- name: Run | |
run: | | |
./tictactoe_cobol < input.txt |