Skip to content

Update actions/checkout action to v4 #21

Update actions/checkout action to v4

Update actions/checkout action to v4 #21

Workflow file for this run

name: mix test
on:
push:
branches:
- "**"
jobs:
test:
runs-on: ubuntu-latest
name: Test on Elixir ${{matrix.elixir}} / OTP ${{matrix.otp}}
strategy:
matrix:
otp: [25.1, 24.3.4]
elixir: [1.13.4, 1.14.0]
steps:
- uses: actions/checkout@v4
- uses: erlef/setup-beam@v1
with:
otp-version: ${{matrix.otp}}
elixir-version: ${{matrix.elixir}}
- run: mix deps.get
- run: mix test