Skip to content

config: hex package metadata #3

config: hex package metadata

config: hex package metadata #3

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