Improve network on frontend-angular #42
This file contains hidden or 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: backend-java-springboot | |
on: | |
push: | |
branches: [master] | |
pull_request: | |
branches: [master] | |
jobs: | |
build-backend: | |
runs-on: ubuntu-latest | |
defaults: | |
run: | |
working-directory: backend-java-springboot | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Set up JDK 21 | |
uses: actions/setup-java@v4 | |
with: | |
distribution: 'temurin' | |
java-version: '21' | |
- name: Lint (Checkstyle) | |
run: mvn checkstyle:check | |
- name: Run tests | |
run: mvn clean test | |
- name: Generate JaCoCo report | |
run: mvn jacoco:report | |
- name: Build and install | |
run: mvn clean install |