2022-02-13 15:54:31 -05:00
|
|
|
# Licensed to the Apache Software Foundation (ASF) under one or more
|
|
|
|
# contributor license agreements. See the NOTICE file distributed with
|
|
|
|
# this work for additional information regarding copyright ownership.
|
|
|
|
# The ASF licenses this file to You under the Apache License, Version 2.0
|
|
|
|
# (the "License"); you may not use this file except in compliance with
|
|
|
|
# the License. You may obtain a copy of the License at
|
|
|
|
#
|
|
|
|
# http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
#
|
|
|
|
# Unless required by applicable law or agreed to in writing, software
|
|
|
|
# distributed under the License is distributed on an "AS IS" BASIS,
|
|
|
|
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
|
|
# See the License for the specific language governing permissions and
|
|
|
|
# limitations under the License.
|
|
|
|
|
2022-02-13 16:30:40 -05:00
|
|
|
name: Coverage
|
2022-02-13 15:54:31 -05:00
|
|
|
|
|
|
|
on: [push, pull_request]
|
|
|
|
|
2022-05-26 12:10:32 -04:00
|
|
|
permissions:
|
|
|
|
contents: read
|
|
|
|
|
2022-02-13 15:54:31 -05:00
|
|
|
jobs:
|
|
|
|
build:
|
|
|
|
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
strategy:
|
|
|
|
matrix:
|
|
|
|
java: [ 8 ]
|
|
|
|
|
|
|
|
steps:
|
2023-09-29 11:19:15 -04:00
|
|
|
- uses: actions/checkout@v4.1.0
|
2022-10-08 10:14:48 -04:00
|
|
|
with:
|
|
|
|
persist-credentials: false
|
2023-09-08 09:04:09 -04:00
|
|
|
- uses: actions/cache@v3.3.2
|
2022-02-13 15:54:31 -05:00
|
|
|
with:
|
|
|
|
path: ~/.m2/repository
|
|
|
|
key: ${{ runner.os }}-maven-${{ hashFiles('**/pom.xml') }}
|
|
|
|
restore-keys: |
|
|
|
|
${{ runner.os }}-maven-
|
|
|
|
- name: Set up JDK ${{ matrix.java }}
|
2023-09-22 09:00:44 -04:00
|
|
|
uses: actions/setup-java@v3.13.0
|
2022-02-13 15:54:31 -05:00
|
|
|
with:
|
2022-07-29 08:37:27 -04:00
|
|
|
distribution: 'temurin'
|
2022-02-13 15:54:31 -05:00
|
|
|
java-version: ${{ matrix.java }}
|
|
|
|
- name: Build with Maven
|
2022-02-13 16:30:40 -05:00
|
|
|
run: mvn -V test jacoco:report --file pom.xml --no-transfer-progress
|
2022-02-13 15:54:31 -05:00
|
|
|
|
2022-02-13 16:30:40 -05:00
|
|
|
- name: Upload coverage to Codecov
|
2022-04-08 08:01:07 -04:00
|
|
|
uses: codecov/codecov-action@v3
|
2022-02-13 15:54:31 -05:00
|
|
|
with:
|
2022-02-13 16:30:40 -05:00
|
|
|
files: ./target/site/jacoco/jacoco.xml
|