Skip to content

testing_exercise.md: correct classname for interface change in 1.4.6 #232

testing_exercise.md: correct classname for interface change in 1.4.6

testing_exercise.md: correct classname for interface change in 1.4.6 #232

Workflow file for this run

name: Java exercise
on:
- push
- pull_request
jobs:
java-exercise:
runs-on: ubuntu-22.04
strategy:
fail-fast: false
matrix:
java:
- '11'
- '17'
steps:
- uses: actions/checkout@v3
- uses: actions/setup-java@v3
with:
distribution: 'temurin'
java-version: ${{ matrix.java }}
- name: compile
working-directory: topics/testing/code
run: mvn install -DskipTests=true
- name: lint
working-directory: topics/testing/code
run: mvn pmd:check
- name: check format
working-directory: topics/testing/code
run: mvn spotless:check
- name: run tests
working-directory: topics/testing/code
run: mvn test
- name: run integration tests
working-directory: topics/testing/code
run: mvn verify