Migrate from drone-ci to forgejo actions. #180

Merged
manuel merged 1 commit from feature/migrate-to-forgejo-actions into main 2026-02-12 21:10:18 +01:00
2 changed files with 11 additions and 9 deletions
Showing only changes of commit 683a65d413 - Show all commits

View file

@ -1,9 +0,0 @@
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 .

View file

@ -0,0 +1,11 @@
on: [push]
jobs:
pkgcheck:
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 .