From 9f9e8517ba2ce28553ea14071bb6a6b4389ca4d4 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Daniel=20Jod=C5=82o=C5=9B?= Date: Wed, 22 May 2024 12:18:02 +0200 Subject: [PATCH] Update elixir.yml --- .github/workflows/elixir.yml | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/.github/workflows/elixir.yml b/.github/workflows/elixir.yml index 49a2fb8..d824990 100644 --- a/.github/workflows/elixir.yml +++ b/.github/workflows/elixir.yml @@ -34,8 +34,12 @@ jobs: path: deps key: ${{ runner.os }}-mix-${{ hashFiles('**/mix.lock') }} restore-keys: ${{ runner.os }}-mix- + - name: Checkout LFS + uses: nschloe/action-cached-lfs-checkout@v1.1.2 - name: Install dependencies - run: mix deps.get + run: mix deps.get && mix deps.compile + - name: Checks if compiles without warning + run: mix compile --warnings-as-errors - name: Run tests run: mix test - name: Run Credo