From f88fd384ab4f609d58b45ae4f7d6b54a7b5e5333 Mon Sep 17 00:00:00 2001 From: Jakob Meier Date: Sun, 13 Aug 2023 18:07:33 +0200 Subject: [PATCH] experimental: forgejo actions demo --- .forgejo/workflows/check-all.yml | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) create mode 100644 .forgejo/workflows/check-all.yml diff --git a/.forgejo/workflows/check-all.yml b/.forgejo/workflows/check-all.yml new file mode 100644 index 0000000..d93fda8 --- /dev/null +++ b/.forgejo/workflows/check-all.yml @@ -0,0 +1,17 @@ +--- +on: [push] +jobs: + demo: + runs-on: docker + container: + image: alpine:edge + + steps: + - name: Install checkout dependencies + run: apk add nodejs git + - name: Checkout + uses: actions/checkout@v2 + - name: Install tools + run: apk add atools + - name: Check all APKBUILDs + run: find . -iname 'APKBUILD' | xargs -n 1 apkbuild-lint -- 2.38.5