Skip to content

refactor: dedup headers via Enum.uniq_by/2 #14

refactor: dedup headers via Enum.uniq_by/2

refactor: dedup headers via Enum.uniq_by/2 #14

Workflow file for this run

name: CI
on: [push, pull_request]
jobs:
test:
runs-on: ubuntu-latest
name: OTP ${{matrix.otp}} / Elixir ${{matrix.elixir}}
strategy:
matrix:
otp: ["24.3", "25.1"]
elixir: ["1.13", "1.14"]
steps:
- uses: actions/checkout@v3
- 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 Formatter
run: mix format --check-formatted
- name: Run Tests
run: mix test --include httpbin