Skip to content

Commit

Permalink
Install OTP and Elixir in CI task
Browse files Browse the repository at this point in the history
  • Loading branch information
jeffkreeftmeijer committed Jun 18, 2024
1 parent 2578112 commit c9bd373
Showing 1 changed file with 9 additions and 0 deletions.
9 changes: 9 additions & 0 deletions .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,15 @@ on:

jobs:
test:
strategy:
matrix:
otp: ['27.0']
elixir: ['1.17.1']
steps:
- name: Set up Erlang and Elixir
uses: erlef/setup-beam@v1
with:
otp-version: ${{matrix.otp}}
elixir-version: ${{matrix.elixir}}
- name: Run tests
run: mix test

0 comments on commit c9bd373

Please sign in to comment.