Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Actions on PR and tag #3626

Closed
wants to merge 20 commits into from
Prev Previous commit
Next Next commit
build with ant and maven
jburel committed Oct 14, 2020
commit 1b122a2d3c1b046bf7f0de5e40446c6d721b5dda
21 changes: 21 additions & 0 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
---
name: Publish packages

on: [push]

jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
java: [1.8, 11]
steps:
- uses: actions/checkout@v2
- name: Set up JDK 1.8
uses: actions/setup-java@v1
with:
java-version: ${{ matrix.java }}
- name: Build with Maven
run: ./tools/test-build maven
- name: Build with Ant
run: ./tools/test-build ant