Skip to content

Commit

Permalink
Update CI configuration
Browse files Browse the repository at this point in the history
  • Loading branch information
tumbarumba committed Jun 14, 2024
1 parent 2e36a12 commit d9cf7e1
Show file tree
Hide file tree
Showing 2 changed files with 31 additions and 58 deletions.
31 changes: 31 additions & 0 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,31 @@
name: Gradle Build

on:
pull_request:
branches: [ "master" ]
merge_group:
types: [checks_requested]

jobs:
build:
name: Java ${{ matrix.java }} build
runs-on: ubuntu-latest
continue-on-error: ${{ matrix.experimental }}
strategy:
fail-fast: true
matrix:
java: [ 8 ]
experimental: [false]
include:
- java: 17
experimental: true
steps:
- uses: actions/checkout@v3
- name: Set up JDK ${{ matrix.java }}
uses: actions/setup-java@v3
with:
java-version: ${{ matrix.java }}
distribution: 'temurin'
cache: gradle
- name: Build with Gradle
run: ./gradlew clean build javadoc
58 changes: 0 additions & 58 deletions .github/workflows/ci.yaml

This file was deleted.

0 comments on commit d9cf7e1

Please sign in to comment.