commit: 49a4af85ee63a614e20a457f7a5e8582e537b40d Author: Sam James <sam <AT> gentoo <DOT> org> AuthorDate: Mon Jun 21 05:49:11 2021 +0000 Commit: Sam James <sam <AT> gentoo <DOT> org> CommitDate: Mon Jun 21 05:49:11 2021 +0000 URL: https://gitweb.gentoo.org/repo/proj/prefix.git/commit/?id=49a4af85
.github: add pkgcheck Github Action Signed-off-by: Sam James <sam <AT> gentoo.org> .github/workflows/main.yml | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) 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
