Update CA1 report #14
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: Java CI with Maven | |
on: | |
push: | |
branches: | |
- master | |
pull_request: | |
branches: | |
- master | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v2 | |
- name: Set up JDK 19 | |
uses: actions/setup-java@v2 | |
with: | |
java-version: '19' | |
distribution: 'temurin' | |
- name: Build with Maven | |
run: mvn clean install | |
test: | |
needs: build | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v2 | |
- name: Set up JDK 19 | |
uses: actions/setup-java@v2 | |
with: | |
java-version: '19' | |
distribution: 'temurin' | |
- name: Run tests | |
run: mvn test |