Skip to content

Fix bug when content type header is missing #18

Fix bug when content type header is missing

Fix bug when content type header is missing #18

Workflow file for this run

on:
push:
branches:
- master
pull_request:
branches:
- master
jobs:
build:
runs-on: ubuntu-latest
name: OTP ${{matrix.otp}} / Elixir ${{matrix.elixir}}
strategy:
matrix:
otp: ['25.1']
elixir: ['1.13.4', '1.14.1']
steps:
- uses: actions/checkout@v2
- uses: erlef/setup-beam@v1
with:
otp-version: ${{matrix.otp}}
elixir-version: ${{matrix.elixir}}
- name: Install Dependencies
run: |
mix local.rebar --force
mix local.hex --force
mix deps.get
- name: Run Credo Checks
run: mix credo
- name: Run Tests
run: mix test