Skip to content

testing workflow2 (#6) #19

testing workflow2 (#6)

testing workflow2 (#6) #19

Workflow file for this run

name: Run Tests and send coverage
on:
deployment:
push:
branches:
- master
jobs:
build:
runs-on: ubuntu-latest
environment: production
steps:
- uses: actions/checkout@v4
- name: Set up JDK
uses: actions/setup-java@v3
with:
java-version: '8'
distribution: 'temurin'
cache: maven
- name: Test with Maven
run: mvn clean test
- name: Run codacy-coverage-reporter
uses: codacy/codacy-coverage-reporter-action@master
with:
project-token: ${{ secrets.CODACY_PROJECT_TOKEN }}