Skip to content

chore(deps): update erlef/setup-beam action to v1.18.2 #77

chore(deps): update erlef/setup-beam action to v1.18.2

chore(deps): update erlef/setup-beam action to v1.18.2 #77

Workflow file for this run

name: Test
on:
- pull_request
- push
jobs:
mix_test:
name: mix test (Elixir ${{ matrix.elixir }} OTP ${{ matrix.otp }})
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
include:
- elixir: '1.12.x'
otp: '24.x'
- elixir: '1.13.x'
otp: '24.x'
- elixir: '1.14.x'
otp: '25.x'
- elixir: '1.15.x'
otp: '26.x'
- elixir: '1.16.x'
otp: '26.x'
steps:
- uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4.1.7
- uses: erlef/setup-beam@a6e26b22319003294c58386b6f25edbc7336819a # v1.18.0
with:
otp-version: ${{ matrix.otp }}
elixir-version: ${{ matrix.elixir }}
- name: Install Dependencies
run: |
mix local.hex --force
mix local.rebar --force
mix deps.get --only test
- name: Run tests
run: mix test