Bump plugin versions: build-config to 5.7.0, ktlint to 13.1.0. #2400
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Build and Test | |
on: [push] | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
# For building we need JDK 11 | |
java: [ '11', '17', '21' ] | |
name: Java ${{ matrix.Java }} BuildAndTest | |
steps: | |
- uses: actions/checkout@v1 | |
- name: Setup java | |
uses: actions/setup-java@v3 | |
with: | |
distribution: 'adopt' | |
java-version: ${{ matrix.java }} | |
- name: Check Java version | |
run: java -version | |
- name: Test | |
run: ./gradlew check |