Skip to content

Update CHANGELOG and bump version #174

Update CHANGELOG and bump version

Update CHANGELOG and bump version #174

Workflow file for this run

name: tests
on: [push, pull_request]
jobs:
tests:
name: Run Tests
runs-on: ubuntu-20.04
strategy:
matrix:
otp: ['21','23']
elixir: ['1.10', '1.11']
global-mock: [true, false]
include:
- otp: '26'
elixir: '1.14'
global-mock: true
- otp: '26'
elixir: '1.14'
global-mock: false
env:
MIX_ENV: test
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
GLOBAL_MOCK: ${{ matrix.global-mock }}
steps:
- uses: actions/checkout@v3
- uses: erlef/setup-beam@v1
with:
otp-version: ${{ matrix.otp }}
elixir-version: ${{ matrix.elixir }}
- uses: actions/cache@v3
with:
path: |
deps
_build
key: ${{ runner.os }}-${{ matrix.otp }}-${{ matrix.elixir }}-mix-${{ hashFiles('**/mix.lock') }}
restore-keys: |
${{ runner.os }}-${{ matrix.otp }}-${{ matrix.elixir }}-mix-
- run: mix deps.get
- uses: nick-invision/retry@v2
with:
timeout_minutes: 3
max_attempts: 3
shell: bash
command: mix coveralls.github