Refactor: Make parameter in playerMove String instead of int #271
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
name: Java CI with Gradle | |
on: | |
push: | |
branches: [ main, live-documentation-readme] | |
pull_request: | |
branches: [ main, live-documentation-readme] | |
permissions: | |
contents: read | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Set up JDK 11 | |
uses: actions/setup-java@v3 | |
with: | |
java-version: '17' | |
distribution: 'temurin' # AdoptOpenJDK Hotspot | |
- name: Cache Gradle packages | |
uses: actions/cache@v2 | |
with: | |
path: | | |
~/backend/.gradle/caches | |
~/backend/.gradle/wrapper | |
key: ${{ runner.os }}-gradle-${{ hashFiles('backend/**/*.gradle*', 'backend/**/gradle-wrapper.properties') }} | |
restore-keys: | | |
${{ runner.os }}-gradle- | |
- name: Grant execute permission for gradlew | |
run: chmod +x backend/gradlew | |
- name: Build with Gradle | |
run: cd backend && ./gradlew build | |
- name: Test with Gradle | |
run: cd backend && ./gradlew test --info | |
- name: Generate uml diagram of backend | |
run: cd backend && ./gradlew buildClassDiagram |