Skip to content

chore(deps): update gradle/gradle-build-action action to v3 [security] #113

chore(deps): update gradle/gradle-build-action action to v3 [security]

chore(deps): update gradle/gradle-build-action action to v3 [security] #113

Workflow file for this run

name: Build
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Set up JDK 17
uses: actions/setup-java@v3
with:
distribution: 'zulu'
java-version: 17
- name: Make gradlew executable
run: chmod +x ./gradlew
- name: Setup Gradle
uses: gradle/gradle-build-action@v3
- name: Build project and run local tests
run: ./gradlew assembleDebug --stacktrace