Bump rubocop in /tictactoe_ruby in the bundler-minor group #464
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 compile the julia version of tictactoe | |
name: julia | |
on: | |
push: | |
branches: [main] | |
pull_request: | |
branches: [main] | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
defaults: | |
run: | |
working-directory: ./tictactoe_julia | |
steps: | |
- name: Checkout repo | |
uses: actions/checkout@v4 | |
- name: Setup Julia | |
uses: julia-actions/setup-julia@v2 | |
- name: Compile, test and run. | |
run: | | |
julia --project=. test/runtests.jl | |
julia --project=. test/runexample.jl -X 3 -O 3 |