Update to Alpine 3.14
[functest.git] / .circleci / config.yml
1 ---
2 version: 2
3 jobs:
4   build:
5     docker:
6       - image: circleci/python:3.9
7     steps:
8       - checkout
9       - run:
10           name: Install dependendencies
11           command: sudo apt-get update && sudo apt-get install enchant
12       - run:
13           name: Run tox
14           command: sudo pip install tox tox-pip-version && tox
15       - store_artifacts:
16           path: api/build
17           destination: api
18       - store_artifacts:
19           path: docs/build
20           destination: docs
21       - store_artifacts:
22           path: cover
23           destination: cover
24       - store_artifacts:
25           path: coverage.xml
26           destination: coverage.xml