ProjectManagmentTool/.gitea/workflows/qs.yml

25 lines
616 B
YAML
Raw Normal View History

2024-09-12 22:23:47 +00:00
name: "Quality Check"
on:
- push
- pull_request
jobs:
linting:
name: "Linting Check"
runs-on: "ubuntu-latest"
container:
image: "git.euph.dev/actions/runner-java-21:latest"
steps:
- name: "Checkout"
uses: "https://git.euph.dev/actions/checkout@v3"
- name: "Prepare Gradle"
run: gradle clean
2024-09-12 22:54:02 +00:00
- name: "Linting Main"
2024-09-12 22:23:47 +00:00
run: gradle checkstyleMain
2024-09-12 22:54:02 +00:00
- name: "Linting Test"
run: gradle checkstyleTest
- name: "Static Analysis Main"
run: gradle spotbugsMain
- name: "Static Analysis Test"
run: gradle spotbugsTest