Skip to content

Quoted boundaries

Quoted boundaries #74

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.19.x
otp: 28.x
check_formatted: true
- elixir: 1.18.x
otp: 27.x
- elixir: 1.17.x
otp: 27.x
- elixir: 1.16.x
otp: 26.x
steps:
- uses: actions/checkout@v6
- 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
- run: mix dialyzer