fix(credentials): add partnerId on getCredentialsRoles #228
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: OCPI CI | |
on: | |
push: | |
branches: [ "main" ] | |
pull_request: | |
branches: [ "**" ] | |
permissions: | |
contents: read | |
jobs: | |
build: | |
concurrency: ocpi-ci | |
runs-on: ubuntu-latest | |
steps: | |
- name: Set up JDK 17 | |
uses: actions/setup-java@v3 | |
with: | |
java-version: '17' | |
distribution: 'temurin' | |
- name: Checkout IZIVIA OCPI toolkit library code from GH | |
uses: actions/checkout@v3 | |
- name: Setup gradle action | |
uses: gradle/[email protected] | |
with: | |
gradle-version: wrapper | |
cache-read-only: ${{ github.ref != 'refs/heads/main' }} | |
gradle-home-cache-cleanup: true | |
- name: Ktlint check OCPI toolkit | |
run: ./gradlew ktlintCheck | |
- name: Build OCPI toolkit | |
run: ./gradlew build |