mirror of
https://github.com/danbee/chess
synced 2025-03-04 08:39:06 +00:00
21 lines
334 B
YAML
21 lines
334 B
YAML
version: 2.1
|
|
|
|
orbs:
|
|
browser-tools: circleci/browser-tools@1.1
|
|
|
|
jobs:
|
|
build:
|
|
docker:
|
|
- image: cimg/elixir:1.14-browsers
|
|
steps:
|
|
- browser-tools/install-browser-tools
|
|
- checkout
|
|
- run: mix --version
|
|
- run: mix deps.get
|
|
- run: mix test
|
|
|
|
workflows:
|
|
build-workflow:
|
|
jobs:
|
|
- build
|