Bump the bundler-minor group in /tictactoe_ruby with 2 updates #574
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 swift version of tictactoe | |
name: swift | |
on: | |
push: | |
branches: [main] | |
pull_request: | |
branches: [main] | |
jobs: | |
build: | |
runs-on: macos-latest | |
defaults: | |
run: | |
working-directory: ./tictactoe_swift | |
steps: | |
- name: Checkout repo | |
uses: actions/checkout@v4 | |
- uses: swift-actions/setup-swift@v2 | |
- name: Build | |
run: swift build | |
- name: Test | |
run: swift test |