More CI changes

This commit is contained in:
Auxilor
2022-02-03 10:30:22 +00:00
parent 989dda0a4f
commit 54c27a0379
3 changed files with 17 additions and 2 deletions

15
.github/workflows/checkstyle.yml vendored Normal file
View File

@@ -0,0 +1,15 @@
name: Check PR Codestyle
on: [ pull_request ]
jobs:
checkstyle:
name: Checkstyle
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: dbelyaev/action-checkstyle@v0.5.1
with:
github_token: ${{ secrets.github_token }}
reporter: github-pr-review
level: warning
checkstyle_config: ../../config/checkstyle/checkstyle.xml

View File

@@ -1,6 +1,6 @@
name: Java CI
on: [push]
on: [ push, pull_request ]
jobs:
build:

View File

@@ -1,6 +1,6 @@
name: Publish API (Dev)
on: [ push ]
on: [ push, pull_request ]
jobs:
publish-release: