mirror of
https://github.com/Multiverse/Multiverse-Core.git
synced 2024-11-22 02:25:41 +01:00
19 lines
386 B
YAML
19 lines
386 B
YAML
name: 'Generic: Checkstyle'
|
|
|
|
on:
|
|
workflow_call:
|
|
|
|
jobs:
|
|
checkstyle:
|
|
runs-on: ubuntu-latest
|
|
permissions:
|
|
contents: read
|
|
steps:
|
|
- uses: actions/checkout@v3
|
|
|
|
- uses: dbelyaev/action-checkstyle@v0.8.4
|
|
with:
|
|
github_token: ${{ secrets.GITHUB_TOKEN }}
|
|
checkstyle_version: 10.12.2
|
|
checkstyle_config: ./config/mv_checks.xml
|