Mappings/.github/workflows/gradle.yml

22 lines
595 B
YAML
Raw Normal View History

2023-12-22 17:45:40 +01:00
name: Java CI with Gradle
on: [push, pull_request]
jobs:
build:
if: ${{ github.event_name != 'pull_request' || github.repository != github.event.pull_request.head.repo.full_name }}
runs-on: ubuntu-22.04
steps:
- name: Checkout Repository
uses: actions/checkout@v4
- name: Validate Gradle Wrapper
2024-03-18 19:48:59 +01:00
uses: gradle/wrapper-validation-action@v2
2024-04-03 16:07:36 +02:00
- name: Set up JDK 21
2023-12-22 17:45:40 +01:00
uses: actions/setup-java@v4
with:
distribution: 'temurin'
2024-04-03 16:07:36 +02:00
java-version: 21
2023-12-22 17:45:40 +01:00
check-latest: true
- name: Build and test with Gradle
run: ./gradlew test