Skip to content

Commit

Permalink
Merge branch 'master' into discovery-abstract
Browse files Browse the repository at this point in the history
  • Loading branch information
paveljandejsek authored Dec 22, 2023
2 parents 545825c + 3befe95 commit 46deddf
Showing 1 changed file with 20 additions and 0 deletions.
20 changes: 20 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
name: CI
on: [push, pull_request]

jobs:
build:
name: Build on Java ${{ matrix.java }}
runs-on: ubuntu-latest
strategy:
matrix:
java: [ 8 ]
steps:
- uses: actions/checkout@v4
- name: Set up Java ${{ matrix.java }}
uses: actions/setup-java@v4
with:
distribution: 'zulu'
java-version: ${{ matrix.java }}
cache: 'maven'
- name: Build with Java ${{ matrix.java }}
run: mvn clean verify -B

0 comments on commit 46deddf

Please sign in to comment.