Skip to content

Update to checkout v4 #7

Update to checkout v4

Update to checkout v4 #7

Workflow file for this run

name: CI
on:
push:
branches: [ "actions" ]
jobs:
test:
runs-on: ubuntu-latest
strategy:
matrix:
otp:
- master
- 27.0
elixir:
- main
- 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: Checkout code
uses: actions/checkout@v4
- name: Get dependencies
run: mix deps.get
- name: Run tests
run: mix test