INTYGFV-16761: Implemented a solution that retrieves statistics from certificate service and adds it to the existing statistics already retrieved from Webcert. #932
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: Checkstyle | |
on: pull_request | |
jobs: | |
checkstyle: | |
runs-on: ubuntu-latest | |
name: Checkstyle job | |
steps: | |
- name: Checkout source | |
uses: actions/checkout@v2 | |
- name: Checkout checkstyle xml | |
uses: actions/checkout@v3 | |
with: | |
repository: sklintyg/gradle-intyg-plugin | |
path: gradle-intyg-plugin | |
ref: feature/java11 | |
- name: Run check style | |
uses: nikitasavinov/checkstyle-action@master | |
with: | |
checkstyle_config: gradle-intyg-plugin/src/main/resources/checkstyle/checkstyle_config_java11.xml | |
checkstyle_version: 10.3.2 | |
level: error |