Issue #502: update to LTS 9.9; cleanup deprecations #315
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: sonar-checkstyle-workflows | |
on: | |
push: | |
branches: | |
- master | |
pull_request: | |
jobs: | |
mvn-install-java-11: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Set up JDK 11 | |
uses: actions/setup-java@v4 | |
with: | |
java-version: '11' | |
distribution: 'temurin' | |
- run: "./.ci/ci.sh install" | |
# depreacted for now since SQ removed the application ZIP files needed for the integration tests | |
# integration-tests: | |
# runs-on: ubuntu-latest | |
# steps: | |
# - uses: actions/checkout@v2 | |
# - name: Set up JDK 11 | |
# uses: actions/setup-java@v1 | |
# with: | |
# java-version: 11 | |
# - name: run integration tests | |
# run: "./.ci/ci.sh integration-tests" | |
nondex: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Set up JDK 11 | |
uses: actions/setup-java@v4 | |
with: | |
java-version: '11' | |
distribution: 'temurin' | |
- run: "./.ci/ci.sh nondex" | |