Skip to content

Bump version to 0.10.0 #78

Bump version to 0.10.0

Bump version to 0.10.0 #78

Workflow file for this run

name: CI
on: push
jobs:
test:
env:
MIX_ENV: test
runs-on: ubuntu-latest
name: OTP ${{matrix.otp}} / Elixir ${{matrix.elixir}}
strategy:
matrix:
include:
- elixir: 1.14.2
otp: 25.1.2
- elixir: 1.17.2
otp: 27.0.1
steps:
- uses: actions/checkout@v2
- uses: erlef/setup-beam@v1
with:
otp-version: ${{matrix.otp}}
elixir-version: ${{matrix.elixir}}
- run: mix deps.get
- run: mix coveralls.github
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}