pokeapi/.circleci/config.yml

30 lines
674 B
YAML
Raw Normal View History

version: 2
jobs:
test:
docker:
- image: circleci/python:3.7
steps:
- checkout
- run:
name: Install deps
command: sudo make dev-install
- run:
name: Linting
command: make format-check
- run:
name: Run tests
command: make test
2020-04-23 11:13:43 +00:00
- add_ssh_keys:
fingerprints:
- "d3:5f:9d:68:ea:12:9a:42:d3:d3:e1:db:b0:6a:fc:d2"
- run:
2020-04-23 19:48:55 +00:00
name: TEST - Create test branch on api-data and relative PR # TODO: move to the deploy phase TODO: rename
command: bash Resources/scripts/updater.sh
workflows:
version: 2
test:
jobs:
- test