Skip to content

feat: avoid computation failure if an error occurs in post run treatment #73

feat: avoid computation failure if an error occurs in post run treatment

feat: avoid computation failure if an error occurs in post run treatment #73

Workflow file for this run

name: CI
on:
push:
branches:
- 'main'
- 'release-v**'
tags:
- 'v[0-9]*'
pull_request:
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Set up JDK 17
uses: actions/setup-java@v1
with:
java-version: 17
- name: Checkout sources
uses: actions/checkout@v1
- name: Build with Maven
run: mvn --batch-mode -Pjacoco verify
- name: Run SonarCloud analysis
run: >
mvn --batch-mode -DskipTests sonar:sonar
-Dsonar.host.url=https://sonarcloud.io
-Dsonar.organization=powsybl-ci-github
-Dsonar.projectKey=com.powsybl:powsybl-ws-commons
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
SONAR_TOKEN: ${{ secrets.SONAR_TOKEN }}
- name: Broadcast update event
if: github.ref == 'refs/heads/main'
uses: gridsuite/broadcast-event@main
with:
token: ${{ secrets.REPO_ACCESS_TOKEN }}
organizations: gridsuite
event-type: ws_commons_updated