Skip to content

Rename AllChampionships to GameChampionship #19

Rename AllChampionships to GameChampionship

Rename AllChampionships to GameChampionship #19

Workflow file for this run

name: Jaceit CI
on:
push:
pull_request:
jobs:
build:
env:
FACEIT_KEY: ${{ secrets.FACEIT_KEY }}
name: Build with JDK 17
runs-on: ubuntu-latest
steps:
- name: Checkout sources
uses: actions/checkout@v4
- name: Cache Gradle packages
uses: actions/cache@v4
with:
path: |
~/.gradle/caches
~/.gradle/wrapper
key: gradle-${{ runner.os }}-${{ hashFiles('**/*.gradle*', '**/gradle-wrapper.properties') }}
restore-keys: |
gradle-${{ runner.os }}-
- name: Set up JDK 17
uses: actions/setup-java@v4
with:
java-version: 17
distribution: 'adopt'
cache: gradle
- name: Grant execute permission for gradlew
run: chmod +x gradlew
- name: Build with Gradle
run: ./gradlew clean build test