mirror of
https://github.com/PokeAPI/pokeapi
synced 2024-11-10 06:04:18 +00:00
fix(circleci): clone submodules
This commit is contained in:
parent
14e9b191c3
commit
08083bb2a4
1 changed files with 10 additions and 0 deletions
|
@ -6,6 +6,11 @@ jobs:
|
|||
- image: circleci/python:3.7
|
||||
steps:
|
||||
- checkout
|
||||
- run:
|
||||
name: Pull Submodules
|
||||
command: |
|
||||
git submodule init
|
||||
git submodule update --remote
|
||||
- run:
|
||||
name: Install deps
|
||||
command: sudo make dev-install
|
||||
|
@ -21,6 +26,11 @@ jobs:
|
|||
image: ubuntu-1604:201903-01 # https://circleci.com/docs/2.0/configuration-reference/#available-machine-images with Docker 18.09.3
|
||||
steps:
|
||||
- checkout
|
||||
- run:
|
||||
name: Pull Submodules
|
||||
command: |
|
||||
git submodule init
|
||||
git submodule update --remote
|
||||
- add_ssh_keys:
|
||||
fingerprints:
|
||||
- "d3:5f:9d:68:ea:12:9a:42:d3:d3:e1:db:b0:6a:fc:d2"
|
||||
|
|
Loading…
Reference in a new issue