Files
AndrOBD/.github/workflows/android.yml
chrisdebian e45c3785d2 chore: update deprecated CI actions and CI badge URL
- 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
2026-06-26 20:28:36 +01:00

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