1
0
mirror of https://github.com/danbee/chess synced 2025-03-04 08:39:06 +00:00

Add postgresql

This commit is contained in:
Daniel Barber 2023-02-12 11:19:32 -06:00
parent ae08c4c0dc
commit 90be7f2dd2

View File

@ -7,12 +7,20 @@ jobs:
build:
docker:
- image: cimg/elixir:1.14-browsers
- image: circleci/postgres:14.6-alpine
working_directory: ~/project
steps:
- browser-tools/install-browser-tools
- checkout
- run: mix --version
- run: mix deps.get
- run: mix test
- run:
name: Install hex
command: mix local.hex --force
- run:
name: Install rebar
command: mix local.rebar --force
- run:
name: Install mix deps
command: mix deps.get
workflows:
build-workflow: