Removed MakedObject #44
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
name: Build | |
on: pull_request | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Set Up JDK 17 | |
uses: actions/setup-java@v1 | |
with: | |
java-version: 17 | |
- name: Change wrapper permissions | |
run: chmod +x ./gradlew | |
- name: Write local.properties | |
run: echo MAPS_API_KEY=${{ secrets.MAPS_API_KEY }} > ./local.properties | |
- name: Run Tests | |
run: ./gradlew test | |
- name: Build Project | |
run: ./gradlew build |