Skip to content

Commit

Permalink
Make github actions
Browse files Browse the repository at this point in the history
  • Loading branch information
pjreiniger committed Nov 5, 2023
1 parent 3c990e2 commit 435b4da
Showing 1 changed file with 26 additions and 0 deletions.
26 changes: 26 additions & 0 deletions .github/workflows/gradle.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
name: Java CI

on: [push]

concurrency:
group: ${{ github.workflow }}-${{ github.head_ref || github.ref }}
cancel-in-progress: true

jobs:
build:
strategy:
fail-fast: false
matrix:
platform: [ubuntu-latest, macos-latest, windows-latest]
runs-on: ${{ matrix.platform }}

steps:
- uses: actions/checkout@v1

- name: Set up Java
uses: actions/setup-java@v1
with:
java-version: 1.11

- name: Build Everything
run: ./gradlew build --continue -x test -x pmdMain

0 comments on commit 435b4da

Please sign in to comment.