Bump the python-minor group in /tictactoe_python with 2 updates #201
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 do stuff wit the Pascal version of tictactoe | |
name: Pascal | |
on: | |
push: | |
branches: [main] | |
pull_request: | |
branches: [main] | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
defaults: | |
run: | |
working-directory: ./tictactoe_pascal | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Setup Lazarus/Pascal | |
uses: gcarreno/setup-lazarus@v3 | |
with: | |
lazarus-version: "stable" | |
with-cache: false | |
- name: Build | |
run: lazbuild tictactoe.lpi | |
- name: Run | |
run: ./tictactoe -x 4 -o 4 |