Skip to content

Release version increased in pom.xml #236

Release version increased in pom.xml

Release version increased in pom.xml #236

Workflow file for this run

# This is a basic workflow to help you get started with Actions
name: CI
# Controls when the workflow will run
on:
# Triggers the workflow on push or pull request events but only for the master branch
push:
branches: [ master ]
pull_request:
branches: [ master ]
# Allows you to run this workflow manually from the Actions tab
workflow_dispatch:
# A workflow run is made up of one or more jobs that can run sequentially or in parallel
jobs:
# This workflow contains a single job called "build"
build:
if: github.repository == 'eiffel-community/eiffel-remrem-publish'
# The type of runner that the job will run on
runs-on: ubuntu-latest
services:
rabbitmq:
image: rabbitmq:3.8-management
options: >-
--health-cmd "rabbitmqctl status"
--health-interval 15s
--health-timeout 5s
--health-retries 5
--health-start-period 30s
env:
RABBITMQ_DEFAULT_USER: guest
RABBITMQ_DEFAULT_PASS: guest
RABBITMQ_DEFAULT_VHOST: /
ports:
- 15672:15672
- 5672:5672
# Steps represent a sequence of tasks that will be executed as part of the job
steps:
# Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it
- uses: actions/checkout@v4
- uses: actions/setup-java@v4
with:
distribution: 'temurin'
java-version: '17'
- name: Before install
shell: bash
run: curl -i -k -v -u guest:guest -H "content-type:application/json"
-XPUT -d'{"type":"topic","durable":true}'
http://${{ env.RABBITMQ_HOST }}:${{ env.RABBITMQ_MNG_PORT }}/api/exchanges/%2f/eiffel.test
env:
RABBITMQ_HOST: 0.0.0.0
RABBITMQ_MNG_PORT: ${{ job.services.rabbitmq.ports[15672] }}
- name: Run test
run: mvn -V -B -U clean test jacoco:report
env:
RABBITMQ_HOST: 0.0.0.0
RABBITMQ_PORT: ${{ job.services.rabbitmq.ports[5672] }}
RABBITMQ_MNG_PORT: ${{ job.services.rabbitmq.ports[15672] }}