From 1592ee9c03b0b077ea13e03bb1e206b9d9541dc9 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Dominik=20S=C3=A4ume?= Date: Thu, 25 Apr 2024 09:46:10 +0200 Subject: [PATCH] NOTICKET: Setup Workflow MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Dominik Säume --- .gitea/workflows/quality.yml | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100644 .gitea/workflows/quality.yml diff --git a/.gitea/workflows/quality.yml b/.gitea/workflows/quality.yml new file mode 100644 index 0000000..18a33b1 --- /dev/null +++ b/.gitea/workflows/quality.yml @@ -0,0 +1,15 @@ +name: "Quality Check" + +on: push + +jobs: + scan: + name: "Check" + runs-on: "ubuntu-latest" + container: + image: "ghcr.io/catthehacker/ubuntu:runner-latest" + steps: + - name: "Checkout" + uses: "https://git.euph.dev/actions/checkout@v3" + - name: "Java" + run: java --version \ No newline at end of file