reformat long doc strings #1
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 GitHub Actions / .github/workflows/elixir.ymlInvalid workflow file
|
||
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 |