Skip to content

[maven-release-plugin] rollback the release of mikron-0.5.0 #160

[maven-release-plugin] rollback the release of mikron-0.5.0

[maven-release-plugin] rollback the release of mikron-0.5.0 #160

Workflow file for this run

# This workflow will build a Java project with Maven, and cache/restore any dependencies to improve the workflow execution time
# For more information see: https://docs.github.com/en/actions/automating-builds-and-tests/building-and-testing-java-with-maven
# This workflow uses actions that are not certified by GitHub.
# They are provided by a third-party and are governed by
# separate terms of service, privacy policy, and support
# documentation.
name: Java CI with Maven
on: [push, pull_request]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Set up JDK 21
uses: actions/setup-java@v3
with:
java-version: '21'
distribution: 'temurin'
cache: maven
- name: Maven Build
run: mvn -e clean install -Dmaven.javadoc.skip=true -B -V
- name: Run tests and collect coverage
run: mvn -B verify
- uses: codecov/codecov-action@v4
with:
fail_ci_if_error: true
files: ./target/jacoco.exec
flags: unittests
name: codecov-umbrella
token: ${{ secrets.CODECOV_TOKEN }} # required
verbose: true # optional (default = false)
env:
CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }}