Skip to content

Hotfix/eventos type tags #1041

Hotfix/eventos type tags

Hotfix/eventos type tags #1041

Workflow file for this run

name: "Continuous Integration"
on:
workflow_dispatch:
push:
branches: [ master ]
pull_request:
branches: [ master ]
jobs:
build:
if: "!contains(github.event.head_commit.message, 'skip ci')"
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Set up Java
uses: actions/setup-java@v4
with:
distribution: temurin
java-version: 21
- name: Maven package
run: mvn clean package --file pom.xml
- name: Coverage tests
run: mvn clean test jacoco:report coveralls:report --file pom.xml