Skip to content

adapt the RaoRequest to the new builder pattern (#166) #185

adapt the RaoRequest to the new builder pattern (#166)

adapt the RaoRequest to the new builder pattern (#166) #185

Workflow file for this run

name: CI - master
on:
push:
branches:
- master
workflow_dispatch:
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3
with:
ref: master
- name: Set up JDK 17
uses: actions/setup-java@v3
with:
java-version: 17
distribution: 'temurin'
- name: Build with Maven
run: mvn --batch-mode -Pdefault,coverage install
- name: Run SonarCloud analysis
run: >
mvn --batch-mode -DskipTests sonar:sonar
-Dsonar.host.url=https://sonarcloud.io
-Dsonar.organization=farao-community
-Dsonar.projectKey=farao-community_gridcapa-cse
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
SONAR_TOKEN: ${{ secrets.SONAR_TOKEN }}
- name: Build and publish Docker image for import corner
uses: elgohr/Publish-Docker-Github-Action@master
with:
name: farao/gridcapa-cse-cc-import-runner
username: farao
password: ${{ secrets.DOCKERHUB_TOKEN }}
dockerfile: ImportDockerfile
- name: Build and publish Docker image for export corner
uses: elgohr/Publish-Docker-Github-Action@master
with:
name: farao/gridcapa-cse-cc-export-runner
username: farao
password: ${{ secrets.DOCKERHUB_TOKEN }}
dockerfile: ExportDockerfile