Skip to content

Commit

Permalink
Add full build workflow to check every variation of the project also …
Browse files Browse the repository at this point in the history
…on macOS
  • Loading branch information
wmontwe committed Oct 9, 2024
1 parent 7e81829 commit 4341d3c
Showing 1 changed file with 35 additions and 0 deletions.
35 changes: 35 additions & 0 deletions .github/workflows/android-build.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,35 @@
name: Android Full Build

on:
pull_request:
paths-ignore:
- '.idea/**'
- '.gitattributes'
- '.github/**.json'
- '.gitignore'
- '.gitmodules'
- '**.md'
- 'LICENSE'
- 'NOTICE'

jobs:
build:
runs-on: macos-latest
timeout-minutes: 90

steps:
- uses: actions/checkout@v4

- name: Copy CI gradle.properties
run: mkdir -p ~/.gradle ; cp .github/ci-gradle.properties ~/.gradle/gradle.properties

- uses: actions/setup-java@v4
with:
distribution: temurin
java-version: 17

- name: Setup Gradle
uses: gradle/actions/setup-gradle@v4

- name: Build
run: ./gradlew build

0 comments on commit 4341d3c

Please sign in to comment.