From 017d42f45bd7c25b93064de0e628ddc6d2dc14eb Mon Sep 17 00:00:00 2001 From: Leandro Pereira Date: Fri, 3 Nov 2023 17:26:26 -0400 Subject: [PATCH] update CI task names with dep versions and fix dialyzer cache --- .github/workflows/elixir.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/elixir.yml b/.github/workflows/elixir.yml index d9e3fcbad..fb176e1db 100644 --- a/.github/workflows/elixir.yml +++ b/.github/workflows/elixir.yml @@ -11,7 +11,7 @@ permissions: jobs: test: - name: test (OTP ${{matrix.otp}} | Elixir ${{matrix.elixir}}) + name: "test: OTP ${{matrix.otp}} | Elixir ${{matrix.elixir}} | Phoenix ${{matrix.phoenix-version}} | LiveView ${{matrix.phoenix-live-view-version}}" strategy: matrix: @@ -78,7 +78,7 @@ jobs: - run: mix test quality: - name: quality (OTP ${{matrix.otp}} | Elixir ${{matrix.elixir}}) + name: "quality: OTP ${{matrix.otp}} | Elixir ${{matrix.elixir}} | Phoenix ${{matrix.phoenix-version}} | LiveView ${{matrix.phoenix-live-view-version}}" strategy: matrix: @@ -124,7 +124,7 @@ jobs: id: cache-plt with: path: priv/plts - key: dialyzer-${{ env.MIX_ENV }}-${{ runner.os }}-${{ matrix.otp }}-${{ matrix.elixir }}-${{ hashFiles('**/mix.lock') }} + key: dialyzer-${{ env.MIX_ENV }}-${{ runner.os }}-${{ matrix.otp }}-${{ matrix.elixir }}-${{ matrix.phoenix-version }}-${{ matrix.phoenix-live-view-version }}-${{ hashFiles('**/mix.lock') }} restore-keys: | dialyzer-${{ env.MIX_ENV }}-${{ runner.os }}-${{ matrix.otp }}-${{ matrix.elixir }}-