Compare commits
2 commits
8133295bda
...
eac7bde8a4
Author | SHA1 | Date | |
---|---|---|---|
eac7bde8a4 | |||
90ea2d7f62 |
2 changed files with 23 additions and 4 deletions
|
@ -1,10 +1,10 @@
|
|||
---
|
||||
|
||||
name: "Ticket"
|
||||
about: "A Ticket"
|
||||
title: "[Ticket]"
|
||||
name: "Task"
|
||||
about: "A Task"
|
||||
title: "[Task]"
|
||||
labels:
|
||||
- "type/Ticket"
|
||||
- "type/Task"
|
||||
|
||||
---
|
||||
## Beschreibung
|
19
.gitea/workflows/quality.yml
Normal file
19
.gitea/workflows/quality.yml
Normal file
|
@ -0,0 +1,19 @@
|
|||
name: "Quality Check"
|
||||
|
||||
on:
|
||||
- push
|
||||
- pull_request
|
||||
|
||||
|
||||
jobs:
|
||||
qs:
|
||||
name: "Qualty Check"
|
||||
runs-on: "ubuntu-latest"
|
||||
container:
|
||||
image: "git.euph.dev/actions/runner-java-21:114"
|
||||
steps:
|
||||
- name: "Checkout"
|
||||
uses: "https://git.euph.dev/actions/checkout@v3"
|
||||
- name: "CHECK"
|
||||
run: mvn checkstyle:check -e
|
||||
|
Loading…
Reference in a new issue