summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSam James <sam@gentoo.org>2021-06-21 06:49:11 +0100
committerSam James <sam@gentoo.org>2021-06-21 06:49:11 +0100
commit49a4af85ee63a614e20a457f7a5e8582e537b40d (patch)
tree55b50b947d64900caa5ba33fd3038141ad1bf4ca /.github
parentscripts/bootstrap-prefix: fix g++ wrapper (diff)
downloadprefix-49a4af85ee63a614e20a457f7a5e8582e537b40d.tar.gz
prefix-49a4af85ee63a614e20a457f7a5e8582e537b40d.tar.bz2
prefix-49a4af85ee63a614e20a457f7a5e8582e537b40d.zip
.github: add pkgcheck Github Action
Signed-off-by: Sam James <sam@gentoo.org>
Diffstat (limited to '.github')
-rw-r--r--.github/workflows/main.yml17
1 files changed, 17 insertions, 0 deletions
diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml
new file mode 100644
index 0000000000..735537a090
--- /dev/null
+++ b/.github/workflows/main.yml
@@ -0,0 +1,17 @@
+name: pkgcheck
+
+on:
+ push:
+ branches: [master]
+ pull_request:
+ branches: [master]
+
+jobs:
+ build:
+ runs-on: ubuntu-latest
+ steps:
+ - name: Checkout code
+ uses: actions/checkout@v2
+
+ - name: Run pkgcheck
+ uses: pkgcore/pkgcheck-action@v1