Skip to content

Commit

Permalink
Migrate CI build to GitHub Actions (#102)
Browse files Browse the repository at this point in the history
* Migrate CI build to GitHub Actions
* Build on all branches (to debug on fork)
* Java 9 and above are not supported
  • Loading branch information
ggrossetie authored Mar 18, 2024
1 parent 2f338bb commit 1e4c706
Showing 1 changed file with 25 additions and 0 deletions.
25 changes: 25 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
name: CI

on:
push:
branches:
- '*'
pull_request:
branches:
- '*'

jobs:
build:
strategy:
matrix:
os: [ubuntu-latest]
java-version: [7, 8]
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v2
- name: Set up Java ${{ matrix.java-version }}
uses: actions/setup-java@v1
with:
java-version: ${{ matrix.java-version }}
- name: Build with Maven
run: mvn verify

0 comments on commit 1e4c706

Please sign in to comment.