Skip to content

Bump version to 2.0.1 #23

Bump version to 2.0.1

Bump version to 2.0.1 #23

Workflow file for this run

name: CI
on: [push, pull_request]
jobs:
format:
name: Validation of source code
runs-on: ubuntu-latest
steps:
- uses: actions/[email protected]
- name: Install OTP and Elixir
uses: erlef/setup-beam@v1
with:
otp-version: 27.1
elixir-version: 1.17.3
- name: Install dependencies
run: mix deps.get
- name: Run validations
run: mix validate
test:
name: Test (Elixir ${{matrix.elixir}} | Erlang/OTP ${{matrix.otp}})
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
include:
- elixir: 1.17.x
otp: 27
- elixir: 1.17.x
otp: 26
- elixir: 1.17.x
otp: 25
- elixir: 1.16.x
otp: 26
- elixir: 1.16.x
otp: 25
- elixir: 1.15.x
otp: 26
- elixir: 1.15.x
otp: 25
env:
MIX_ENV: test
steps:
- uses: actions/checkout@v1
- name: Install OTP and Elixir
uses: erlef/setup-beam@v1
with:
otp-version: ${{matrix.otp}}
elixir-version: ${{matrix.elixir}}
- name: Install dependencies
run: mix deps.get --only test
- name: Run tests
run: mix test --trace