Skip to content

Update to Elixir v1.15.6 #814

Update to Elixir v1.15.6

Update to Elixir v1.15.6 #814

Workflow file for this run

name: "CI Tests"
on:
push:
branches:
- master
- release/*
pull_request:
branches:
- master
jobs:
test:
runs-on: ubuntu-20.04
name: "[${{matrix.otp}}/${{matrix.elixir}}] CI Tests on Credo [OTP/Elixir]"
strategy:
fail-fast: false
matrix:
otp: [23.3, 24.2, 25.3]
elixir: [1.11.4, 1.12.2, 1.13.4, 1.14.5, 1.15.6]
exclude:
- elixir: 1.11.4
otp: 25.3
- elixir: 1.12.2
otp: 25.3
- elixir: 1.14.5
otp: 25.3
- elixir: 1.15.6
otp: 26.0
- elixir: 1.15.6
otp: 23.3
- elixir: 1.15.6
otp: 24.2
steps:
- uses: actions/checkout@v3
with:
fetch-depth: 0
- uses: erlef/setup-beam@v1
with:
otp-version: ${{matrix.otp}}
elixir-version: ${{matrix.elixir}}
- run: mix deps.get
- run: mix deps.compile
- run: mix compile --warnings-as-errors
- run: mix test
- run: ./test/smoke_test.sh