diff --git a/.github/workflows/build-autogenerated.yml b/.github/workflows/build-autogenerated.yml new file mode 100644 index 0000000..a0df861 --- /dev/null +++ b/.github/workflows/build-autogenerated.yml @@ -0,0 +1,32 @@ +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 pom.xml + + - name: Run tests + run: mvn test --file pom.xml + + - name: Static code analysis + run: mvn checkstyle:check + + - name: Code coverage + run: mvn jacoco:report \ No newline at end of file