Skip to content

v3.0.1

v3.0.1 #35

Workflow file for this run

on: [push, pull_request]
jobs:
test:
runs-on: ubuntu-24.04
name: Logbook on Elixir ${{matrix.elixir}} (OTP ${{matrix.otp}})
strategy:
matrix:
otp: ["26", "27"]
elixir: ["1.17.3", "1.18.2"]
exclude:
- otp: "22.3"
elixir: "1.14.3"
- otp: "25.2"
elixir: "1.11.4"
- otp: "25.2"
elixir: "1.12.3"
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