mirror of
https://github.com/danbee/chess
synced 2025-03-04 08:39:06 +00:00
29 lines
559 B
YAML
29 lines
559 B
YAML
version: 2.1
|
|
|
|
orbs:
|
|
browser-tools: circleci/browser-tools@1.1
|
|
|
|
jobs:
|
|
build:
|
|
docker:
|
|
- image: cimg/elixir:1.14-browsers
|
|
- image: cimg/postgres:14.6
|
|
steps:
|
|
- browser-tools/install-browser-tools:
|
|
path: ~/
|
|
- checkout
|
|
- 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:
|
|
jobs:
|
|
- build
|