Skip to content

Replace travis with Github actions #2

Replace travis with Github actions

Replace travis with Github actions #2

Workflow file for this run

name: CI
on: [push, pull_request]
permissions:
contents: read
jobs:
test:
runs-on: ubuntu-24.04
name: OTP ${{matrix.otp}} / Elixir ${{matrix.elixir}}
strategy:
matrix:
otp: ["25.3", "26.2", "27.3", "28.1"]
elixir: ["1.16.1", "1.17.3", "1.18.4", "1.19"]
steps:
- uses: actions/checkout@v4
- uses: erlef/setup-beam@v1
with:
otp-version: ${{matrix.otp}}
elixir-version: ${{matrix.elixir}}
- run: mix deps.get --only test
- run: mix test