Skip to content

Update deps, fix deprecations and add catalog-info #15

Update deps, fix deprecations and add catalog-info

Update deps, fix deprecations and add catalog-info #15

Workflow file for this run

name: CI
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
jobs:
test:
runs-on: ubuntu-latest
services:
db:
image: postgres:13
ports: ['5432:5432']
env:
POSTGRES_PASSWORD: postgres
options: >-
--health-cmd pg_isready
--health-interval 10s
--health-timeout 5s
--health-retries 5
steps:
- uses: actions/checkout@v2
- uses: erlef/setup-beam@v1
with:
otp-version: '23.3.2'
elixir-version: '1.11.4'
- run: mix deps.get
- run: env MIX_ENV=test mix ecto.create
- run: mix test