Skip to content

Fix docs generation #12

Fix docs generation

Fix docs generation #12

Workflow file for this run

name: Elixir CI
on:
push:
branches: [ master ]
pull_request:
branches: [ master ]
jobs:
test:
runs-on: ubuntu-22.04
name: OTP ${{matrix.otp}} / Elixir ${{matrix.elixir}}
strategy:
matrix:
elixir: ["1.14", "1.15"]
otp: ["24.3.4.9", "25.3.2.3"]
env:
MIX_ENV: test
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
steps:
- uses: actions/checkout@v3
- name: Setup elixir
uses: erlef/setup-beam@v1
with:
elixir-version: ${{ matrix.elixir }}
otp-version: ${{ matrix.otp }}
- name: Install Dependencies
run: mix deps.get
- name: Validate Formatting
run: mix format --check-formatted
- name: Run Credo
run: mix credo --strict
- name: Run Tests
run: MIX_ENV=test mix coveralls.github