Update dependency com.jcabi:jcabi-xml to v0.33.1 #274
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: [ master ] | |
pull_request: | |
jobs: | |
test: | |
name: Tests | |
strategy: | |
matrix: | |
os: [ubuntu-18.04, macOS-10.15, windows-2019] | |
java: [8, 11, 16] | |
runs-on: ${{ matrix.os }} | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Java ${{ matrix.java }} | |
uses: actions/setup-java@v4 | |
with: | |
java-version: ${{ matrix.java }} | |
- name: Test | |
run: mvn clean test --errors --batch-mode | |
lint: | |
name: Linters | |
runs-on: ubuntu-24.04 | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Ruby 2.7 | |
uses: actions/setup-ruby@v1 | |
with: | |
ruby-version: 2.7 | |
- name: Install xcop | |
run: | | |
gem install xcop | |
- name: JDK 1.8 | |
uses: actions/setup-java@v4 | |
with: | |
java-version: 1.8 | |
- name: Qulice | |
run: mvn -P qulice clean install -DskipTests=true --errors --batch-mode | |
- name: Site | |
run: mvn -P site clean site --errors --batch-mode |