Skip to content

reformat long doc strings #1

reformat long doc strings

reformat long doc strings #1

Workflow file for this run

on: [push, pull_request]
jobs:
test:
strategy:
matrix:
os: [ubuntu-20.04, ubuntu-22.04]
otp: [24, 25, 26]
elixir: [1.15]
check_formatted: true

Check failure on line 10 in .github/workflows/elixir.yml

View workflow run for this annotation

GitHub Actions / .github/workflows/elixir.yml

Invalid workflow file

The workflow is not valid. .github/workflows/elixir.yml (Line: 10, Col: 26): Unexpected value 'true' .github/workflows/elixir.yml (Line: 11, Col: 22): Unexpected value 'true'
check_style: true
runs-on: ${{matrix.os}}
name: OTP ${{matrix.otp}} / Elixir ${{matrix.elixir}} (${{matrix.os}})
steps:
- uses: actions/checkout@v4
- uses: erlef/[email protected]
with:
otp-version: ${{matrix.otp}}
elixir-version: ${{matrix.elixir}}
- name: Install Dependencies
run: mix deps.get
- name: Check formatting
if: matrix.check_formatted
run: mix format --check-formatted
- name: Check style
if: matrix.check_style
run: mix credo --format flycheck
- name: Compile project
run: mix compile --warnings-as-errors
- name: Run tests
run: mix test --cover