Bump pyo3 from 0.22.5 to 0.22.6 in /tictactoe_rust in the cargo-minor group #113
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 |