* fix CI

* fix CI

* fix CI

* fix CI

* fix CI

* fix CI

* fix CI

* fix CI
This commit is contained in:
Atsushi Sakai
2021-11-17 22:58:23 +09:00
committed by GitHub
parent 6f309828ba
commit 137e372db1
5 changed files with 23 additions and 10 deletions

View File

@@ -1,7 +1,7 @@
version: 2.1
orbs:
python: circleci/python@0.2.1
python: circleci/python@1.4.0
jobs:
build_doc:
@@ -9,13 +9,13 @@ jobs:
- image: circleci/python:3.9
steps:
- checkout
- python/load-cache
- python/install-deps
- python/save-cache
- run: pip install -r requirements.txt
- run:
command: cd docs;make html
name: doc_build
command: |
python -m venv venv
. venv/bin/activate
pip install -r requirements.txt
cd docs;make html
- store_artifacts:
path: docs/_build/html/
destination: html

View File

@@ -1,6 +1,10 @@
name: Linux_CI
on: [push, pull_request]
on:
push:
branches:
- master
pull_request:
jobs:
build:

View File

@@ -4,7 +4,12 @@ name: MacOS_CI
# Controls when the action will run. Triggers the workflow on push or pull request
# events but only for the master branch
on: [push, pull_request]
on:
push:
branches:
- master
pull_request:
jobs:
build:

View File

@@ -2,8 +2,8 @@ name: "Code scanning - action"
on:
push:
branches-ignore:
- 'dependabot/**'
branches:
- master
pull_request:
schedule:
- cron: '0 19 * * 0'

View File

@@ -10,6 +10,10 @@ environment:
matrix:
- PYTHON_DIR: C:\Python39-x64
branches:
only:
- master
init:
- "ECHO %PYTHON_DIR%"