INTYGFV-16796: Implementation of email notification enabled for deep integrated users. #960
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 |