simple impl to try to use https://github.com/HtmlUnit/htmlunit-neko SAX parser (see #282) #350
Workflow file for this run
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
name: Build | |
on: | |
push: | |
branches: [ "main" ] | |
pull_request: | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
# The last 2 LTS releases | |
java: [ 17, 21 ] | |
name: Java ${{matrix.java}} | |
steps: | |
- uses: actions/checkout@v4.1.6 | |
- name: Setup java | |
uses: actions/setup-java@v4 | |
with: | |
distribution: temurin | |
java-version: ${{matrix.java}} | |
- name: Build with Maven | |
run: mvn -B package |