Skip to content

docs: Add comprehensive documentation to the library #2

docs: Add comprehensive documentation to the library

docs: Add comprehensive documentation to the library #2

Workflow file for this run

name: CI
on:
push:
pull_request:
jobs:
test:
name: Build and test
runs-on: ubuntu-latest
strategy:
matrix:
elixir: ["1.12", "1.13", "1.14"]
otp: ["23.0", "24.0", "25.0"]
steps:
- uses: actions/checkout@v3
- name: Set up Elixir
uses: erlef/setup-beam@v1
with:
elixir-version: ${{ matrix.elixir }}
otp-version: ${{ matrix.otp }}
- name: Restore dependencies cache
uses: actions/cache@v3
with:
path: deps
key: ${{ runner.os }}-mix-${{ hashFiles('**/mix.lock') }}
restore-keys: ${{ runner.os }}-mix-
- name: Install dependencies
run: mix deps.get
- name: Check formatting
run: mix format --check-formatted
- name: Run tests
run: mix test