Skip to content

Update the doc and README #15

Update the doc and README

Update the doc and README #15

Workflow file for this run

name: CI
on: [push]
jobs:
test:
runs-on: ubuntu-20.04
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Setup Elixir
uses: actions/setup-elixir@v1
with:
elixir-version: '1.14.3' # Define the elixir version [required]
otp-version: '24.0.6' # Define the OTP version [required]
experimental-otp: true
- name: Install dependencies
run: mix deps.get
- name: Check formatting
run: mix format --check-formatted
- name: Run tests
run: mix test