Skip to content

Bump httpoison from 2.1.0 to 2.2.1 #236

Bump httpoison from 2.1.0 to 2.2.1

Bump httpoison from 2.1.0 to 2.2.1 #236

Workflow file for this run

name: CI
on:
push:
branches: ["**"]
tags:
- v*
pull_request:
jobs:
test:
strategy:
matrix:
otp: ["24.3", "25.3", "26.1"]
elixir: ["1.14.5", "1.15.7"]
runs-on: ubuntu-20.04
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 test
testolder:
runs-on: ubuntu-20.04
strategy:
matrix:
otp: ["23.3"]
elixir: ["1.14"]
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 test