Skip to content

Commit

Permalink
Update elixir.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
mtarnovan authored and kalys committed Sep 7, 2024
1 parent c99dff0 commit bd56f47
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/elixir.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,11 +14,11 @@ jobs:
steps:
- uses: actions/checkout@v2
- name: Setup elixir
uses: actions/setup-elixir@v1
id: setup-beam
uses: erlef/setup-beam@v1
with:
elixir-version: 1.14.x # Define the elixir version [required]
otp-version: 25.x # Define the OTP version [required]
experimental-otp: true
- name: Install Dependencies
run: mix deps.get
- name: Run Tests
Expand All @@ -32,9 +32,9 @@ jobs:
id: plt_cache
with:
key: |
${{ runner.os }}-${{ steps.beam.outputs.elixir-version }}-${{ steps.beam.outputs.otp-version }}-plt
${{ runner.os }}-${{ steps.setup-beam.outputs.elixir-version }}-${{ steps.setup-beam.outputs.otp-version }}-plt
restore-keys: |
${{ runner.os }}-${{ steps.beam.outputs.elixir-version }}-${{ steps.beam.outputs.otp-version }}-plt
${{ runner.os }}-${{ steps.setup-beam.outputs.elixir-version }}-${{ steps.setup-beam.outputs.otp-version }}-plt
path: |
priv/plts
Expand Down

0 comments on commit bd56f47

Please sign in to comment.