From ee9739f29462a93a49ec0af416fc511b3e9b246e Mon Sep 17 00:00:00 2001 From: Philipp Doerner Date: Sat, 28 Oct 2023 00:08:51 +0200 Subject: [PATCH] Re-enable book and docs compilation for testing --- .github/workflows/tests.yml | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index 152083e..1bb89c6 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -20,3 +20,20 @@ jobs: - name: sqlite tests run: docker-compose run tests-sqlite + Book: + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v2 + - name: Book + run: | + sudo apt update -y + sudo apt install -y libpcre++-dev + nimble nimidocs + + Docs: + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v2 + - name: Docs + run: docker-compose run docs +