Skip to content

Add quote_boundary opt to content_type/3 #59

Add quote_boundary opt to content_type/3

Add quote_boundary opt to content_type/3 #59

Workflow file for this run

on: [push, pull_request]
jobs:
test:
runs-on: ubuntu-latest
name: OTP ${{matrix.otp}} / Elixir ${{matrix.elixir}}
strategy:
matrix:
include:
- elixir: 1.14.x
otp: 25.x
check_formatted: true
- elixir: 1.13.x
otp: 24.x
- elixir: 1.12.x
otp: 24.x
steps:
- uses: actions/checkout@v2
- uses: erlef/setup-beam@v1
with:
otp-version: ${{matrix.otp}}
elixir-version: ${{matrix.elixir}}
- run: mix deps.get
- name: Check Formatting
run: mix format --check-formatted
if: matrix.check_formatted
- run: mix test