Skip to content

release: v3.0.1-beta.17 #14

release: v3.0.1-beta.17

release: v3.0.1-beta.17 #14

Workflow file for this run

name: Test with Coverage
on:
workflow_dispatch:
push:
branches: [ master ]
paths-ignore:
- '.github/**'
- '.editorconfig'
- '.gitattributes'
- '.gitignore'
- 'LICENSE'
- 'README.md'
pull_request:
branches: [ master ]
paths-ignore:
- '.github/**'
- '.editorconfig'
- '.gitattributes'
- '.gitignore'
- 'LICENSE'
- 'README.md'
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Set up JDK 21
uses: actions/setup-java@v4
with:
java-version: '21'
distribution: 'temurin'
cache: maven
- name: Build and test with Maven
run: mvn -B verify -Dtest='!**/IndexPerformanceE2ETest' -Dsurefire.failIfNoSpecifiedTests=false
- name: Upload coverage to Codecov
uses: codecov/codecov-action@v5
with:
token: ${{ secrets.CODECOV_TOKEN }}
slug: OkaeriPoland/okaeri-persistence
files: persistence-test/target/site/jacoco-aggregate/jacoco.xml
fail_ci_if_error: false