Skip to content

Bump to v0.6.0.

Bump to v0.6.0. #25

Workflow file for this run

name: CI
on: [push, pull_request]
env:
CACHE_VERSION: 1
jobs:
test:
runs-on: ubuntu-20.04
name: OTP ${{ matrix.otp }} - Elixir ${{ matrix.elixir }}
env:
MIX_ENV: "test"
ELIXIR_VERSION: ${{ matrix.elixir }}
OTP_VERSION: ${{ matrix.otp }}
strategy:
fail-fast: false
matrix:
otp: ["24", "25", "26"]
elixir: ["1.13.4", "1.14.5", "1.15.5"]
exclude:
- otp: "26"
elixir: "1.13.4"
include:
- otp: "23"
elixir: "1.13.4"
- otp: "23"
elixir: "1.14.5"
steps:
- name: Checkout source code
uses: actions/checkout@v3
- name: Setup OTP and Elixir
uses: erlef/setup-beam@v1
with:
otp-version: ${{matrix.otp}}
elixir-version: ${{matrix.elixir}}
- name: Install Dependencies
run: mix deps.get
- name: Run Tests
run: mix test