Skip to content

build: bump org.sonatype.plugins:nexus-staging-maven-plugin from 1.6.13 to 1.7.0 #143

build: bump org.sonatype.plugins:nexus-staging-maven-plugin from 1.6.13 to 1.7.0

build: bump org.sonatype.plugins:nexus-staging-maven-plugin from 1.6.13 to 1.7.0 #143

Workflow file for this run

name: CI
on:
pull_request:
branches: [ main ]
push:
branches: [ main ]
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Set up JDK 25
uses: actions/setup-java@v4
with:
distribution: temurin
java-version: 25
- name: Cache Maven dependencies
uses: actions/cache@v4
with:
path: ~/.m2/repository
key: ${{ runner.os }}-maven-${{ hashFiles('**/pom.xml') }}
restore-keys: |
${{ runner.os }}-maven-
- name: Build with Maven
run: mvn clean install --no-transfer-progress
- name: Upload coverage to Codecov
uses: codecov/codecov-action@v5