Merge pull request #34 from Minime998/daily_quests #87
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: Android CI | |
on: | |
push: | |
branches: [ "main" ] | |
pull_request: | |
branches: [ "main" ] | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Set up JDK 17 | |
uses: actions/setup-java@v3 | |
with: | |
java-version: '17' | |
distribution: 'temurin' | |
java-package: 'jdk' | |
architecture: 'x64' | |
- name: Init gradle | |
run: gradle init | |
- name: Init gradle wrapper | |
run: gradle wrapper | |
- name: Change wrapper permissions | |
run: chmod +x ./gradlew | |
- name: Build with Gradle wrapper | |
run: ./gradlew build |