Skip to content

@devops Generate Workflow #8

@devops Generate Workflow

@devops Generate Workflow #8

name: Build and Test
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v2
- name: Set up JDK 11
uses: actions/setup-java@v1
with:
java-version: 11
- name: Build with Maven
run: mvn -B package --file service-center-app/pom.xml
- name: Run tests
run: mvn test --file service-center-app/pom.xml
- name: Static code analysis
run: mvn checkstyle:check
- name: Code coverage
run: mvn jacoco:report