File tree Expand file tree Collapse file tree 5 files changed +23
-10
lines changed Expand file tree Collapse file tree 5 files changed +23
-10
lines changed Original file line number Diff line number Diff line change 11version : 2.1
22
33orbs :
4- python : circleci/python@0.2.1
4+ python : circleci/python@1.4.0
55
66jobs :
77 build_doc :
88 docker :
99 - image : circleci/python:3.9
1010 steps :
1111 - checkout
12- - python/load-cache
13- - python/install-deps
14- - python/save-cache
15- - run : pip install -r requirements.txt
1612 - run :
17- command : cd docs;make html
1813 name : doc_build
14+ command : |
15+ python -m venv venv
16+ . venv/bin/activate
17+ pip install -r requirements.txt
18+ cd docs;make html
1919 - store_artifacts :
2020 path : docs/_build/html/
2121 destination : html
Original file line number Diff line number Diff line change 11name : Linux_CI
22
3- on : [push, pull_request]
3+ on :
4+ push :
5+ branches :
6+ - master
7+ pull_request :
48
59jobs :
610 build :
Original file line number Diff line number Diff line change @@ -4,7 +4,12 @@ name: MacOS_CI
44
55# Controls when the action will run. Triggers the workflow on push or pull request
66# events but only for the master branch
7- on : [push, pull_request]
7+ on :
8+ push :
9+ branches :
10+ - master
11+ pull_request :
12+
813
914jobs :
1015 build :
Original file line number Diff line number Diff line change @@ -2,8 +2,8 @@ name: "Code scanning - action"
22
33on :
44 push :
5- branches-ignore :
6- - ' dependabot/** '
5+ branches :
6+ - master
77 pull_request :
88 schedule :
99 - cron : ' 0 19 * * 0'
Original file line number Diff line number Diff line change @@ -10,6 +10,10 @@ environment:
1010 matrix :
1111 - PYTHON_DIR : C:\Python39-x64
1212
13+ branches :
14+ only :
15+ - master
16+
1317init :
1418 - " ECHO %PYTHON_DIR%"
1519
You can’t perform that action at this time.
0 commit comments