diff --git a/.forgejo/workflows/demo.yaml b/.forgejo/workflows/demo.yaml new file mode 100644 index 0000000..b7d698e --- /dev/null +++ b/.forgejo/workflows/demo.yaml @@ -0,0 +1,21 @@ +on: [push] +jobs: + pgkcheck: + runs-on: docker + container: + image: gittr.ch/linux/pkgcheck:latest + steps: + - name: Checkout repository + uses: actions/checkout@v6 + - name: Run repository checks + run: pkgcheck --color true scan --exit error,style --net . + +#kind: pipeline +#type: docker +#name: default +# +#steps: +#- name: run-pkgcheck +# image: gittr.ch/linux/pkgcheck:latest +# commands: +# - pkgcheck --color true scan --exit error,style --net . diff --git a/.forgejo/workflows/pkgckeck.yaml b/.forgejo/workflows/pkgckeck.yaml deleted file mode 100644 index 8cb4671..0000000 --- a/.forgejo/workflows/pkgckeck.yaml +++ /dev/null @@ -1,15 +0,0 @@ -on: [push] -jobs: - checkout: - runs-on: docker - steps: - - name: Checkout repository - uses: actions/checkout@v6 -jobs: - pgkcheck: - runs-on: docker - container: - image: gittr.ch/linux/pkgcheck:latest - steps: - - name: Run repository checks - run: pkgcheck --color true scan --exit error,style --net .