Skip to content

Release 0.10.3

Release 0.10.3 #48

Workflow file for this run

name: CI
on:
pull_request:
push:
branches:
- '**'
jobs:
mix_test:
name: mix test (Elixir ${{matrix.elixir}} | OTP ${{matrix.otp}})
runs-on: ubuntu-20.04
strategy:
fail-fast: false
matrix:
include:
# We run linter only for last Elixir version
- elixir: 1.15.x
otp: 26
warnings_as_errors: true
lint: true
- elixir: 1.14.x
otp: 25
- elixir: 1.13.x
otp: 24
- elixir: 1.12.x
otp: 24
- elixir: 1.11.x
otp: 23
- elixir: 1.10.x
otp: 22
- elixir: 1.9.x
otp: 22
- elixir: 1.8.x
otp: 22
- elixir: 1.7.x
otp: 21
env:
MIX_ENV: test
steps:
- uses: actions/checkout@v3
- uses: erlef/setup-beam@v1
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
- run: mix compile --warnings-as-errors
if: matrix.warnings_as_errors
- run: mix test
- run: |
mix deps.get --only dev
MIX_ENV=dev mix credo --format=oneline
mix format --check-formatted
if: matrix.lint