Bump the kotlin-minor group in /tictactoe_kotlin with 5 updates #126
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 stuff on the intercal version of tictactoe. | |
name: intercal | |
on: | |
push: | |
branches: [main] | |
pull_request: | |
branches: [main] | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
defaults: | |
run: | |
working-directory: ./tictactoe_intercal | |
steps: | |
- name: Checkout repo | |
uses: actions/checkout@v4 | |
- name: Install dependencies | |
run: | | |
sudo apt-get install intercal | |
- name: Compile tictactoe | |
run: ick -Ofb tictactoe.i | |
- name: Run | |
run: | | |
./tictactoe < input1.txt | |
./tictactoe < input2.txt |