Bump pyo3 from 0.23.2 to 0.23.3 in /tictactoe_rust in the cargo group #592
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 the tests on the generic version of tictactoe | |
name: generic | |
on: | |
push: | |
branches: [main] | |
pull_request: | |
branches: [main] | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
defaults: | |
run: | |
working-directory: main/tictactoe_generic | |
steps: | |
- name: Checkout generic | |
uses: actions/checkout@v4 | |
with: | |
repository: JanEricNitschke/generic-lang | |
path: generic-lang | |
- name: Checkout repo | |
uses: actions/checkout@v4 | |
with: | |
path: main | |
- name: Install generic | |
run: cargo install --path . | |
working-directory: generic-lang | |
- name: Test | |
run: generic tests/test_tictactoe.gen |