Skip to content

Update README.md

Update README.md #968

Workflow file for this run

name: Elixir CI
on:
push:
branches: ["main"]
pull_request:
branches: ["main"]
permissions:
contents: read
jobs:
test:
name: test (OTP ${{matrix.otp}} | Elixir ${{matrix.elixir}})
env:
MIX_ENV: test
MDEX_BUILD: 1
strategy:
matrix:
include:
- elixir: "1.13.0"
otp: "23"
- elixir: "1.15.1"
otp: "26"
runs-on: ubuntu-20.04
services:
postgres:
image: postgres:13.1
env:
POSTGRES_PASSWORD: postgres
options: >-
--health-cmd pg_isready
--health-interval 10s
--health-timeout 5s
--health-retries 5
ports:
- 5432:5432
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: Cache mix deps
uses: actions/cache@v3
id: cache-deps
with:
path: |
deps
_build
key: mix-${{ env.MIX_ENV }}-${{ runner.os }}-${{ matrix.otp }}-${{ matrix.elixir }}-${{ hashFiles('**/mix.lock') }}
restore-keys: |
mix-${{ env.MIX_ENV }}-${{ runner.os }}-${{ matrix.otp }}-${{ matrix.elixir }}-
- run: mix do deps.get, deps.compile
if: steps.cache-deps.outputs.cache-hit != 'true'
- run: mix tailwind.install
- run: mix test
quality:
name: quality (OTP ${{matrix.otp}} | Elixir ${{matrix.elixir}})
env:
MIX_ENV: dev
MDEX_BUILD: 1
strategy:
matrix:
include:
- elixir: "1.15.1"
otp: "26"
runs-on: ubuntu-20.04
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: Cache mix deps
uses: actions/cache@v3
id: cache-deps
with:
path: |
deps
_build
key: mix-${{ env.MIX_ENV }}-${{ runner.os }}-${{ matrix.otp }}-${{ matrix.elixir }}-${{ hashFiles('**/mix.lock') }}
restore-keys: |
mix-${{ env.MIX_ENV }}-${{ runner.os }}-${{ matrix.otp }}-${{ matrix.elixir }}-
- run: mix do deps.get, deps.compile
if: steps.cache-deps.outputs.cache-hit != 'true'
- name: Cache dialyzer
uses: actions/cache@v2
id: cache-plt
with:
path: priv/plts
key: dialyzer-${{ env.MIX_ENV }}-${{ runner.os }}-${{ matrix.otp }}-${{ matrix.elixir }}-${{ hashFiles('**/mix.lock') }}
restore-keys: |
dialyzer-${{ env.MIX_ENV }}-${{ runner.os }}-${{ matrix.otp }}-${{ matrix.elixir }}-
- name: Generate dialyzer plt
run: mix dialyzer --plt
if: steps.cache-plt.outputs.cache-hit != 'true'
- run: mix tailwind.install
# - run: mix compile --warnings-as-errors
- run: mix format --check-formatted
- run: mix deps.unlock --check-unused
- run: mix credo --strict
- run: mix dialyzer