fix(logging) #68: remove logback configuration #211
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: OCPP CI | |
on: | |
push: | |
branches: [ "dev" ] | |
pull_request: | |
branches: [ "**" ] | |
permissions: | |
contents: read | |
jobs: | |
build: | |
concurrency: ocpp-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 OCPP toolkit library code from GH | |
uses: actions/checkout@v3 | |
- name: Build OCPP toolkit with Gradle | |
uses: gradle/[email protected] | |
with: | |
gradle-version: 7.4.2 | |
arguments: build |