Skip to content

wip: fill bsky schema (need to split into different contexts) #4

wip: fill bsky schema (need to split into different contexts)

wip: fill bsky schema (need to split into different contexts) #4

Workflow file for this run

name: ci
on:
push:
branches:
- main
pull_request:
branches:
- main
jobs:
lint:
runs-on: ubuntu-latest
strategy:
matrix:
elixir: [1.17.0]
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