Skip to content

Update ci.yml

Update ci.yml #53

Workflow file for this run

name: Android Core SDK CI
on:
workflow_dispatch:
push:
branches:
- master
- support/SDK-V3
- feature/**
- bugfix/**
- dependabot/**
jobs:
build:
# Compile the project using the predefined JDK versions in the strategy section
runs-on: ubuntu-latest
name: Build - JDK ${{ matrix.java-version }}
strategy:
fail-fast: false
matrix:
distribution: 'zulu'

Check failure on line 22 in .github/workflows/ci.yml

View workflow run for this annotation

GitHub Actions / Android Core SDK CI

Invalid workflow file

The workflow is not valid. .github/workflows/ci.yml (Line: 22, Col: 23): Unexpected value 'zulu'
java-version: [ 11 ]
steps:
- uses: actions/checkout@v4
- name: Setup JDK ${{ matrix.java }}
uses: actions/setup-java@v4
with:
java-version: ${{ matrix.java-version }}
- name: Setup Android SDK
uses: android-actions/setup-android@v2
- name: Build CORE SDK ${{ matrix.java-version }}
run: ./gradlew --scan clean lint testDebugUnitTest jacocoTestCoverageVerification