Skip to content

Bump hackney from 1.18.1 to 1.19.1 #176

Bump hackney from 1.18.1 to 1.19.1

Bump hackney from 1.18.1 to 1.19.1 #176

name: Continuous Integration
on: push
jobs:
test:
runs-on: ubuntu-latest
name: OTP ${{matrix.otp}} / Elixir ${{matrix.elixir}}
strategy:
matrix:
otp: ['24.3']
elixir: ['1.12.3', '1.13.4', '1.14.2']
steps:
- uses: actions/checkout@v2
- uses: erlef/setup-elixir@v1
with:
otp-version: ${{matrix.otp}}
elixir-version: ${{matrix.elixir}}
version-type: strict
- uses: actions/cache@v1
with:
path: deps
key: ${{ runner.os }}-${{ matrix.otp }}-${{ matrix.elixir }}-mix-${{ hashFiles(format('{0}{1}', github.workspace, '/mix.lock')) }}
- run: mix deps.get
- run: mix test