Skip to content

Introduce Checkstyle integration test #10

Introduce Checkstyle integration test

Introduce Checkstyle integration test #10

# If requested by means of a pull request comment, runs integration tests
# against the project, using the code found on the pull request branch.
# XXX: Generalize this to a matrix build of multiple integration tests,
# possibly using multiple JDK or OS versions.
name: "Integration tests"
on:
issue_comment:
types: [ created ]
# XXX: Drop.
pull_request:
permissions:
contents: read
jobs:
run-integration-tests:
name: On-demand integration test
# XXX: Enable.
#if: |
# github.event.issue.pull_request && contains(github.event.comment.body, '/integration-test')
runs-on: ubuntu-22.04
steps:
- name: Check out code
uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4.1.1
with:
persist-credentials: false
# XXX: Enable.
#ref: refs/pull/${{ github.event.issue.number }}/head
- name: Set up JDK
uses: actions/setup-java@0ab4596768b603586c0de567f2430c30f5b0d2b0 # v3.13.0
with:
java-version: 17.0.8
distribution: temurin
cache: maven
- name: Install project to local Maven repository
run: mvn -T1C install -DskipTests -Dverification.skip
- name: Quick test to make sure that Xvfb is present
# XXX: Drop this step.
run: |
echo "XXX_${DISPLAY}_XXX"
xvfb-run -- sh -c 'echo "XXX_${DISPLAY}_XXX"'
- name: Run integration test
run: xvfb-run ./integration-tests/checkstyle-10.12.4.sh