Skip to content

Stream raw file to upload (supabase-fetcher) #57

Stream raw file to upload (supabase-fetcher)

Stream raw file to upload (supabase-fetcher) #57

Workflow file for this run

name: ci
on:
push:
branches:
- main
pull_request:
branches:
- main
jobs:
lint:
runs-on: ubuntu-latest
env:
- MIX_ENV=test

Check failure on line 16 in .github/workflows/ci.yml

View workflow run for this annotation

GitHub Actions / ci

Invalid workflow file

The workflow is not valid. .github/workflows/ci.yml (Line: 16, Col: 7): A sequence was not expected
strategy:
matrix:
elixir: [1.18.1]
otp: [27.0]
steps:
- name: Checkout code
uses: actions/checkout@v3
- name: Set up Elixir
uses: erlef/setup-beam@v1
with:
elixir-version: ${{ matrix.elixir }}
otp-version: ${{ matrix.otp }}
- name: Install dependencies
run: mix deps.get
- name: Clean build
run: mix clean
- name: Check code formatting
run: mix format --check-formatted
- name: Run Credo
run: mix credo --strict