Skip to content

fix wrong test instruction #20

fix wrong test instruction

fix wrong test instruction #20

Workflow file for this run

name: Game Test
on: [ pull_request, push ]
jobs:
gametest:
runs-on: ubuntu-22.04
steps:
- name: checkout repository
uses: actions/checkout@v4
- name: validate gradle wrapper
uses: gradle/wrapper-validation-action@v2
- name: Set up JDK 21
uses: actions/setup-java@v4
with:
java-version: 21
distribution: 'microsoft'
- name: make gradle wrapper executable
run: chmod +x ./gradlew
- name: Build and run game tests
run: ./gradlew runGameTest