From 00e073d32197c9a39778853be143f1124ce06022 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=C5=81ukasz=20Jan=20Niemier?= Date: Mon, 4 Nov 2024 16:32:26 +0100 Subject: [PATCH] chore: check if lockfile is up to date This will raise if there are some pending changes to the `mix.lock`. This is to ensure, that `mix.lock` was uploaded after dependency changes. --- .github/workflows/elixir.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/elixir.yml b/.github/workflows/elixir.yml index 95ca8314..ae1c23cc 100644 --- a/.github/workflows/elixir.yml +++ b/.github/workflows/elixir.yml @@ -36,7 +36,7 @@ jobs: restore-keys: | ${{ runner.os }}-mix- - name: Install dependencies - run: mix deps.get + run: mix deps.get --check-locked format: name: Formatting checks