Bump androidx.activity:activity-compose from 1.9.3 to 1.10.0 in /tictactoe_kotlin in the kotlin-minor group #348
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 D version of tictactoe | |
name: D | |
on: | |
push: | |
branches: [main] | |
pull_request: | |
branches: [main] | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
defaults: | |
run: | |
working-directory: ./tictactoe_d | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Setup D | |
uses: dlang-community/setup-dlang@v2 | |
with: | |
compiler: dmd | |
- name: Run tests | |
run: dub test | |
- name: Run the game | |
run: dub run -- --X-strength=4 --O-strength=4 |