Skip to content

HttpDouble now parses PUT /expectation payloads containing httpError:… #11

HttpDouble now parses PUT /expectation payloads containing httpError:…

HttpDouble now parses PUT /expectation payloads containing httpError:… #11

Workflow file for this run

name: CI
on:
push:
branches: [main, master]
pull_request:
jobs:
test:
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
otp: ["24.3", "25.3", "26.2"]
elixir: ["1.15.7"]
steps:
- uses: actions/checkout@v4
- name: Set up Elixir ${{ matrix.elixir }} / OTP ${{ matrix.otp }}
uses: erlef/setup-beam@v1
with:
elixir-version: ${{ matrix.elixir }}
otp-version: ${{ matrix.otp }}
- name: Restore deps cache
uses: actions/cache@v4
with:
path: deps
key: ${{ runner.os }}-mix-${{ hashFiles('**/mix.lock') }}-${{ matrix.elixir }}-${{ matrix.otp }}
- name: Install dependencies
run: mix deps.get
- name: Check formatting
run: mix format --check-formatted
- name: Run Credo
run: mix credo --strict
- name: Run tests
run: mix test