Skip to content

start pipeline_ci

start pipeline_ci #3

Workflow file for this run

name: Verify Format
on: pull_request
jobs:
check-format:
name: Check Format
runs-on: ubuntu-latest
strategy:
matrix:
elixir: [1.14.3]
otp: [25]
steps:
- uses: actions/checkout@v2
- uses: erlef/setup-elixir@v1
with:
elixir-version: ${{ matrix.elixir }}
otp-version: ${{ matrix.otp }}
- uses: actions/cache@v1
id: mix-cache-format
with:

Check failure on line 21 in .github/workflows/formater.yml

View workflow run for this annotation

GitHub Actions / Verify Format

Invalid workflow file

The workflow is not valid. .github/workflows/formater.yml (Line: 21, Col: 14): Unexpected value '' .github/workflows/formater.yml (Line: 22, Col: 9): Unexpected value 'path'
path: deps
key: ${{ runner.os }}-${{ matrix.otp }}-${{ matrix.elixir }}-mix-${{ hashFiles(format('{0}{1}', github.workspace, '/mix.lock')) }}
- name: Install Mix Dependencies
if: steps.mix-cache-format.outputs.cache-hit != 'true'
run: mix deps.get
- name: ==> FORMAT
run: mix format --check-formatted