Skip to content

chore(deps): update actions/checkout action to v4.1.7 #73

chore(deps): update actions/checkout action to v4.1.7

chore(deps): update actions/checkout action to v4.1.7 #73

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@0a541161e47ec43ccbd9510053c5f336ca76c2a2 # v1.17.6
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