Skip to content

testing: add links #230

testing: add links

testing: add links #230

Workflow file for this run

name: Java exercise
on:
- push
- pull_request
jobs:
java-exercise:
runs-on: ubuntu-22.04
steps:
- uses: actions/checkout@v3
- uses: actions/setup-java@v3
with:
distribution: 'adopt'
java-version: '11'
- 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