From 796617390cdd47beb693d4fd230653e241d35401 Mon Sep 17 00:00:00 2001 From: Florian Arens <60519307+Flo0807@users.noreply.github.com> Date: Fri, 24 Jan 2025 10:13:50 +0100 Subject: [PATCH] Build docs with warnings as errors in ci --- .github/workflows/ci.yml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index efba0e59..dc57292d 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -67,6 +67,9 @@ jobs: - name: Compile with warnings as errors run: mix compile --warnings-as-errors --force + - name: Build docs with warnings as errors + run: mix docs -o /dev/null --warnings-as-errors + - name: Credo run: mix credo