-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #35 from veraPDF/rel/1.24
REL 1.24 - Merge release to master branch
- Loading branch information
Showing
37 changed files
with
2,096 additions
and
891 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,35 @@ | ||
name: PR QA | ||
|
||
on: | ||
pull_request: | ||
types: [opened, synchronize, reopened] | ||
|
||
jobs: | ||
build: | ||
name: Checkout and Build | ||
runs-on: ubuntu-20.04 | ||
|
||
strategy: | ||
matrix: | ||
java-version: [8, 11, 16, 17] | ||
|
||
steps: | ||
- uses: actions/checkout@v2 | ||
- name: JDK setup | ||
uses: actions/setup-java@v2 | ||
with: | ||
java-version: ${{ matrix.java-version }} | ||
distribution: 'temurin' | ||
cache: maven | ||
- name: Build with Maven | ||
run: mvn --batch-mode --update-snapshots verify | ||
|
||
coverage: | ||
name: Quality Assurance | ||
runs-on: ubuntu-20.04 | ||
needs: [ build ] | ||
|
||
steps: | ||
- uses: actions/checkout@v2 | ||
- name: Codacy analysis reporting | ||
uses: codacy/codacy-analysis-cli-action@master |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
language: java | ||
sudo: required | ||
dist: trusty | ||
|
||
jdk: | ||
- openjdk8 | ||
- openjdk9 | ||
- oraclejdk9 | ||
- oraclejdk11 | ||
|
||
branches: | ||
except: | ||
- /^v|d\d+\.\d+\.\d+$/ | ||
- /^jenkins-veraPDF-plugins-v|d\\d+\\.\\d+\\.\\d+$/ |
Large diffs are not rendered by default.
Oops, something went wrong.
Oops, something went wrong.