commit: bd4d359a28ba506d8343993c8c6b9919a712a692 Author: Ulrich Müller <ulm <AT> gentoo <DOT> org> AuthorDate: Mon Oct 11 10:54:48 2021 +0000 Commit: Ulrich Müller <ulm <AT> gentoo <DOT> org> CommitDate: Mon Oct 11 10:54:48 2021 +0000 URL: https://gitweb.gentoo.org/proj/devmanual.git/commit/?id=bd4d359a
.github/workflows: Enable CI on Github Signed-off-by: Ulrich Müller <ulm <AT> gentoo.org> .github/workflows/devmanual-ci.yml | 26 ++++++++++++++++++++++++++ 1 file changed, 26 insertions(+) diff --git a/.github/workflows/devmanual-ci.yml b/.github/workflows/devmanual-ci.yml new file mode 100644 index 0000000..a304cd8 --- /dev/null +++ b/.github/workflows/devmanual-ci.yml @@ -0,0 +1,26 @@ +name: Devmanual CI + +on: + push: + branches: [master] + pull_request: + branches: [master] + workflow_dispatch: + +jobs: + build: + runs-on: ubuntu-latest # no gentoo :( + steps: + - uses: actions/checkout@v2 + - name: install prerequisites + # librsvg2-bin for rsvg-convert + # xsltproc for xsltproc + # libxml2-utils for xmllint + # tidy for tidy + run: > + sudo apt install -y librsvg2-bin xsltproc libxml2-utils tidy + fonts-open-sans + - name: make + run: make + - name: make check + run: make check
