mirror of
https://github.com/fr3ts0n/AndrOBD.git
synced 2026-07-30 22:46:01 -04:00
- actions/checkout@v1 → @v4 (both workflows) - actions/setup-java@v1 → @v4 (both workflows); add required distribution: temurin parameter - Update README CI badge from deprecated /workflows/ URL to /actions/workflows/ path
21 lines
356 B
YAML
21 lines
356 B
YAML
name: Android CI
|
|
|
|
on: [push, pull_request]
|
|
|
|
jobs:
|
|
build:
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
|
- uses: actions/checkout@v4
|
|
with:
|
|
submodules: true
|
|
- name: set up JDK 17
|
|
uses: actions/setup-java@v4
|
|
with:
|
|
java-version: '17'
|
|
distribution: 'temurin'
|
|
- name: Build with Gradle
|
|
run: ./gradlew build
|