Skip to content

Fix readme

Fix readme #44

Workflow file for this run

on: push
jobs:
test:
runs-on: ubuntu-22.04
name: OTP 27 / Elixir 1.18
services:
postgres:
image: postgres:latest
env:
POSTGRES_PASSWORD: postgres
ports: ["5432:5432"]
options: --health-cmd pg_isready --health-interval 10s --health-timeout 5s --health-retries 5
steps:
- uses: actions/checkout@v4
- uses: erlef/setup-beam@v1
with:
otp-version: 27
elixir-version: 1.18
- uses: actions/cache@v4
with:
path: |
deps
_build
key: ${{ runner.os }}-mix-${{ hashFiles('**/mix.lock') }}
restore-keys: |
${{ runner.os }}-mix-
- run: mix deps.get && mix test