Skip to content

test: [custom-ktlint-rules] add tests for java.nio.files (should have… #19

test: [custom-ktlint-rules] add tests for java.nio.files (should have…

test: [custom-ktlint-rules] add tests for java.nio.files (should have… #19

name: Build and verify
on:
push:
branches:
- '*'
paths-ignore:
- '**/*.md'
workflow_dispatch:
jobs:
build-and-test:
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
# https://docs.github.com/en/actions/using-jobs/choosing-the-runner-for-a-job
os: [ ubuntu-22.04, windows-2022, macos-12 ]
jvm: [ 11, 17, 21 ]
# https://github.com/actions
# https://github.com/marketplace?type=actions
steps:
- name: Checkout project
uses: actions/[email protected]
- name: Setup JVM ${{ matrix.jvm }}
uses: actions/[email protected]
with:
distribution: 'temurin'
java-version: ${{ matrix.jvm }}
# https://github.com/marketplace/actions/gradle-build-action
- name: Setup Gradle
uses: gradle/[email protected]
with:
# The Gradle wrapper's version (already the default, putting it here to clarity)
cache-write-only: true
gradle-home-cache-cleanup: true
gradle-home-cache-includes: |
caches
notifications
jdks
gradle-version: wrapper
- name: Build
run: ./gradlew build