Skip to content

Commit 137e372

Browse files
authored
* fix CI * fix CI * fix CI * fix CI * fix CI * fix CI * fix CI * fix CI
1 parent 6f30982 commit 137e372

File tree

5 files changed

+23
-10
lines changed

5 files changed

+23
-10
lines changed

.circleci/config.yml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,21 +1,21 @@
11
version: 2.1
22

33
orbs:
4-
python: circleci/python@0.2.1
4+
python: circleci/python@1.4.0
55

66
jobs:
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

.github/workflows/Linux_CI.yml

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,10 @@
11
name: Linux_CI
22

3-
on: [push, pull_request]
3+
on:
4+
push:
5+
branches:
6+
- master
7+
pull_request:
48

59
jobs:
610
build:

.github/workflows/MacOS_CI.yml

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff 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

914
jobs:
1015
build:

.github/workflows/codeql.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,8 @@ name: "Code scanning - action"
22

33
on:
44
push:
5-
branches-ignore:
6-
- 'dependabot/**'
5+
branches:
6+
- master
77
pull_request:
88
schedule:
99
- cron: '0 19 * * 0'

appveyor.yml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,10 @@ environment:
1010
matrix:
1111
- PYTHON_DIR: C:\Python39-x64
1212

13+
branches:
14+
only:
15+
- master
16+
1317
init:
1418
- "ECHO %PYTHON_DIR%"
1519

0 commit comments

Comments
 (0)