Bump fabasoad/setup-mojo-action from 1 to 2 in the actions-all group #613
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 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 |