Compare commits
2 commits
eac7bde8a4
...
8133295bda
Author | SHA1 | Date | |
---|---|---|---|
8133295bda | |||
fd2d3445b7 |
2 changed files with 23 additions and 4 deletions
|
@ -1,10 +1,10 @@
|
||||||
---
|
---
|
||||||
|
|
||||||
name: "Ticket"
|
name: "Task"
|
||||||
about: "A Ticket"
|
about: "A Task"
|
||||||
title: "[Ticket]"
|
title: "[Task]"
|
||||||
labels:
|
labels:
|
||||||
- "type/Ticket"
|
- "type/Task"
|
||||||
|
|
||||||
---
|
---
|
||||||
## Beschreibung
|
## 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