Bump the kotlin-minor group in /tictactoe_kotlin with 3 updates #440
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 for the nim version. | |
name: nim | |
on: | |
push: | |
branches: [main] | |
pull_request: | |
branches: [main] | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
defaults: | |
run: | |
working-directory: ./tictactoe_nim | |
steps: | |
- name: Checkout repo | |
uses: actions/checkout@v4 | |
- uses: jiro4989/setup-nim-action@v2 | |
with: | |
nim-version: 'stable' | |
repo-token: ${{ secrets.GITHUB_TOKEN }} | |
- name: Compile | |
run: nimble build | |
- name: Test | |
run: nimble test | |
- name: Run | |
run: ./tictactoe_nim --X=4 --O=4 |