Skip to content

Commit

Permalink
Update github actions
Browse files Browse the repository at this point in the history
- remove Java 16 support
- move continue-on-error
- remove travis.yml
  • Loading branch information
MaximPlusov committed May 13, 2024
1 parent ff06d95 commit 3b79660
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 29 deletions.
5 changes: 2 additions & 3 deletions .github/workflows/test-pr.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,17 +9,16 @@ jobs:
name: Checkout and Build
runs-on: ubuntu-latest

continue-on-error: true

strategy:
fail-fast: false
matrix:
java-version: [8, 11, 16, 17, 21]
java-version: [8, 11, 17, 21]

steps:
- uses: actions/checkout@v4
- name: JDK setup
uses: actions/setup-java@v4
continue-on-error: true
with:
java-version: ${{ matrix.java-version }}
distribution: 'temurin'
Expand Down
25 changes: 0 additions & 25 deletions .travis.yml

This file was deleted.

2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# veraPDF-wcag-algs

A collection of algorithms implementing validation of various WCAG 2.1 rules on top of the PDF/UA-1 (Machine) validation profile.
A collection of algorithms implementing validation of various WCAG 2.1 / WCAG 2.2 rules on top of the PDF/UA-1 (Machine) validation profile.

For the moment This includes heuristics calculating the correctness of the structure tree and the contrast ratio for text elements.

0 comments on commit 3b79660

Please sign in to comment.