Skip to content

GH-231 Support fallback to 'default' version when .index file is miss… #330

GH-231 Support fallback to 'default' version when .index file is miss…

GH-231 Support fallback to 'default' version when .index file is miss… #330

Workflow file for this run

name: CI
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
jobs:
build:
name: "Build with JDK${{ matrix.jdk }}"
runs-on: ubuntu-latest
strategy:
matrix:
# LTS and the latest one
jdk: [ 17, 19 ]
steps:
- uses: actions/checkout@v2
- name: Set up JDK
uses: actions/setup-java@v1
with:
java-version: ${{ matrix.jdk }}
- name: Grant execute permission for gradlew
run: chmod +x gradlew
- name: Build with Gradle
run: ./gradlew build
- name: Upload coverage to Codecov
uses: codecov/codecov-action@v1