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