11 lines
292 B
YAML
11 lines
292 B
YAML
on: [push]
|
|
jobs:
|
|
pkgcheck:
|
|
runs-on: docker
|
|
container:
|
|
image: gittr.ch/linux/pkgcheck:20260211
|
|
steps:
|
|
- name: Checkout repository
|
|
uses: actions/checkout@v6
|
|
- name: Run repository checks
|
|
run: pkgcheck --color true scan --exit error,style --net .
|