Skip to content

Add geographical layout for NAD #286

Add geographical layout for NAD

Add geographical layout for NAD #286

Workflow file for this run

name: CI
on:
push:
branches:
- 'main'
- 'release-v**'
pull_request:
jobs:
build:
name: Build OS ubuntu-latest
runs-on: ubuntu-latest
steps:
- name: Checkout sources
uses: actions/checkout@v2.3.4
- name: Set up JDK 17
uses: actions/setup-java@v2
with:
distribution: 'zulu'
java-version: 17
- name: Build diagram viewer with Maven
run: mvn --file diagram-viewer --batch-mode -P jacoco,checks package
- name: Run SonarCloud analysis on diagram viewer
run: >
mvn --file diagram-viewer --batch-mode -Pjacoco verify sonar:sonar
-Dsonar.host.url=https://sonarcloud.io
-Dsonar.organization=powsybl-ci-github
-Dsonar.projectKey=com.powsybl:powsybl-dev-tools
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
SONAR_TOKEN: ${{ secrets.SONAR_TOKEN }}