Skip to content

Change project description in pom.xml #28

Change project description in pom.xml

Change project description in pom.xml #28

Workflow file for this run

name: CI
on:
push:
branches: [main]
pull_request:
branches: [main]
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Set up Java 25
uses: actions/setup-java@v4
with:
java-version: '25'
distribution: 'temurin'
- name: Build and test
run: |
mvn -pl streamfence-core \
--no-transfer-progress \
clean verify \
-Dgpg.skip=true
- name: Upload coverage reports to Codecov
uses: codecov/codecov-action@v5
with:
token: ${{ secrets.CODECOV_TOKEN }}