Skip to content

fix: handle whitespace around array brackets #21

fix: handle whitespace around array brackets

fix: handle whitespace around array brackets #21

Workflow file for this run

name: Elixir CI
on:
push:
branches: [main]
pull_request:
branches: [main]
jobs:
test:
runs-on: ubuntu-latest
name: OTP ${{matrix.otp}} / Elixir ${{matrix.elixir}}
strategy:
matrix:
otp: ["24.2", "25.3", "26.2"]
elixir: ["1.14.5", "1.15.6", "1.16.1"]
steps:
- uses: actions/checkout@v4
- uses: erlef/setup-beam@v1
with:
otp-version: ${{matrix.otp}}
elixir-version: ${{matrix.elixir}}
- name: Restore dependencies cache
uses: actions/cache@v2
with:
path: deps
key: ${{ matrix.otp }}-${{ matrix.elixir }}-mix-${{ hashFiles('**/mix.lock') }}
restore-keys: ${{ matrix.otp }}-${{ matrix.elixir }}-mix-
- run: mix deps.get
- run: mix test