Skip to content

chore(deps): update dependency httpoison to v2 #138

chore(deps): update dependency httpoison to v2

chore(deps): update dependency httpoison to v2 #138

Workflow file for this run

name: CI
on: [push, pull_request]
jobs:
test:
runs-on: ubuntu-20.04
name: OTP ${{matrix.otp}} / Elixir ${{matrix.elixir}}
strategy:
matrix:
include:
- elixir: "1.9.x"
otp: "22.0"
- elixir: "1.12.x"
otp: "24.0"
- elixir: "1.13.x"
otp: "24.0"
- elixir: "1.14.x"
otp: "25.0"
- elixir: "1.15.x"
otp: "25.0"
env:
MIX_ENV: test
FCM_SERVER_KEY: test
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
steps:
- uses: actions/checkout@v3
- uses: erlef/setup-beam@v1
with:
otp-version: ${{matrix.otp}}
elixir-version: ${{matrix.elixir}}
experimental-otp: true
- run: mix deps.get
- run: mix test
- run: mix coveralls.github