Bump DeLaGuardo/setup-clojure from 13.0 to 13.1 in the actions-all group #158
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 theTcl version of tictactoe | |
name: Tcl | |
on: | |
push: | |
branches: [main] | |
pull_request: | |
branches: [main] | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
defaults: | |
run: | |
working-directory: ./tictactoe_tcl | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Setup Tcl | |
run: sudo apt-get install tcl | |
- name: Run the game | |
run: tclsh tictactoe.tcl 4 4 |