diff --git a/.circleci/config.yml b/.circleci/config.yml index 8a9a820..e6727c0 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -7,7 +7,6 @@ jobs: build: docker: - image: cimg/elixir:1.14-browsers - - image: cimg/postgres:14.6 steps: - browser-tools/install-chrome - browser-tools/install-chromedriver @@ -21,8 +20,17 @@ jobs: - run: name: Install mix deps command: mix deps.get - + test: + docker: + - image: cimg/elixir:1.14-browsers + - image: cimg/postgres:14.6 + steps: + - run: + name: Run tests + command: mix test + workflows: build-workflow: jobs: - build + - test