Configure Sonatype Nexus Username #64
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: | |
# Trigger on every pull request and on push | |
# to the `main` branch. | |
pull_request: | |
push: | |
branches: | |
- main | |
jobs: | |
build: | |
runs-on: macos-13 | |
steps: | |
- uses: actions/setup-java@v3 | |
with: | |
distribution: 'temurin' | |
java-version: '17' | |
- name: Checkout the code | |
uses: actions/checkout@v4 | |
- name: Build the app | |
run: ./gradlew build --stacktrace -x lint | |
- name: run tests | |
uses: ./.github/actions/android-test | |