1
0
Fork 0
mirror of https://github.com/crawler-commons/crawler-commons synced 2024-05-10 16:06:04 +02:00
crawler-commons/.github/workflows/code_coverage.yml

30 lines
665 B
YAML

name: Code Coverage
on:
pull_request:
push:
branches:
- master
jobs:
build:
name: Coveralls
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3
with:
persist-credentials: false
- name: Set up JDK 11
uses: actions/setup-java@v3
with:
distribution: 'temurin'
java-version: 11
- name: Build & test with Maven and coverage
run: mvn -B --no-transfer-progress test
- name: Post to Coveralls
uses: coverallsapp/github-action@v2
with:
github-token: ${{ secrets.GITHUB_TOKEN }}
format: jacoco