19 lines
456 B
YAML
19 lines
456 B
YAML
on: [push]
|
|
jobs:
|
|
pgkcheck:
|
|
runs-on: docker
|
|
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 .
|