eynollah/.circleci/config.yml

29 lines
489 B
YAML
Raw Normal View History

2020-11-23 13:40:54 +01:00
version: 2
jobs:
build-python36:
docker:
2023-02-09 20:14:48 +01:00
- image: python:3.7
2020-11-23 13:40:54 +01:00
steps:
- checkout
- restore_cache:
keys:
- model-cache
- run: make models
- save_cache:
key: model-cache
paths:
models_eynollah.tar.gz
models_eynollah
- run: make install
- run: make smoke-test
workflows:
version: 2
build:
jobs:
2023-02-09 20:14:48 +01:00
#- build-python36
- build-python37
- build-python38