15 lines
260 B
YAML
15 lines
260 B
YAML
# TravisCI config for circuitpython.org
|
|
|
|
# only run if triggered by a cron
|
|
if: type = cron
|
|
|
|
dist: xenial
|
|
language: python
|
|
python: "3.6"
|
|
|
|
install:
|
|
- pip install -r adabot/requirements.txt
|
|
|
|
script:
|
|
- cd adabot
|
|
- python -u -m adabot.update_cp_org_libraries
|