Skip to content

Commit

Permalink
Merge pull request #35 from veraPDF/rel/1.24
Browse files Browse the repository at this point in the history
REL 1.24 - Merge release to master branch
  • Loading branch information
MaximPlusov authored Jun 29, 2023
2 parents c9d586c + 00fe58d commit 8bfb20c
Show file tree
Hide file tree
Showing 37 changed files with 2,096 additions and 891 deletions.
35 changes: 35 additions & 0 deletions .github/workflows/test-pr.yml
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
9 changes: 9 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -11,9 +11,18 @@
*.war
*.ear

# Maven targets
**/target

# virtual machine crash logs, see http://www.java.com/en/download/help/error_hotspot.xml
hs_err_pid*

## IntelliJ files
*.iml
.idea


## Eclipse artifacts
**/.project
**/.classpath
**/.settings
14 changes: 14 additions & 0 deletions .travis.yml
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+$/
675 changes: 675 additions & 0 deletions LICENSE.GPL

Large diffs are not rendered by default.

Loading

0 comments on commit 8bfb20c

Please sign in to comment.