Skip to content

Bump jvm from 2.0.10 to 2.0.20 #36

Bump jvm from 2.0.10 to 2.0.20

Bump jvm from 2.0.10 to 2.0.20 #36

Workflow file for this run

#
# Copyright © 2024 Peter M. Stahl [email protected]
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either expressed or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
name: Build
on:
push:
branches:
- main
paths:
- 'build.gradle.kts'
- 'settings.gradle.kts'
- 'gradle/wrapper/gradle-wrapper.properties'
- 'src/**'
- '**.yml'
pull_request:
branches:
- main
paths:
- 'build.gradle.kts'
- 'settings.gradle.kts'
- 'gradle/wrapper/gradle-wrapper.properties'
- 'src/**'
- '**.yml'
jobs:
build:
name: Build and Test
runs-on: ubuntu-latest
steps:
- name: Check out repository
uses: actions/checkout@v4
- name: Set up Java
uses: actions/setup-java@v4
with:
distribution: 'temurin'
java-version: '8'
- name: Set up Gradle
uses: gradle/gradle-build-action@v3
- name: Build and test
run: ./gradlew check