Skip to content

Commit 585a90c

Browse files
authored
New structure (#226)
1 parent 14fe538 commit 585a90c

File tree

337 files changed

+2823
-3070
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

337 files changed

+2823
-3070
lines changed
Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
# https://github.com/readthedocs/actions/tree/v1/preview#how-to-use-it
2+
name: Read the Docs Pull Request Preview
3+
on:
4+
pull_request_target:
5+
types:
6+
- opened
7+
8+
permissions:
9+
pull-requests: write
10+
11+
jobs:
12+
documentation-links:
13+
runs-on: ubuntu-latest
14+
steps:
15+
- uses: readthedocs/actions/preview@v1
16+
with:
17+
project-slug: "common-workflow-languageuser-guide"
18+
project-language: "en"
19+
# message-template: ?
20+
platform: "community"

.github/workflows/gh-pages.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ jobs:
3434
restore-keys: |
3535
${{ runner.os }}-pip-
3636
- name: Install dependencies
37-
run: python3 -m pip install -U -r ./requirements.txt
37+
run: python3 -m pip install -U -e .[all]
3838

3939
- name: Build documentation
4040
run: make html

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,3 +11,4 @@ _site
1111
.RData
1212

1313
_build/
14+
*.egg-info/

.readthedocs.yaml

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
version: 2
2+
3+
build:
4+
os: ubuntu-20.04
5+
tools:
6+
python: "3.9"
7+
apt_packages:
8+
- graphviz
9+
10+
sphinx:
11+
configuration: src/conf.py
12+
builder: html
13+
14+
python:
15+
install:
16+
- method: pip
17+
path: .
18+
extra_requirements:
19+
- all
20+

.travis.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,9 +13,9 @@ branches:
1313
- main
1414
- /.*/
1515

16-
before_script:
16+
install:
1717
- pip install -U pip setuptools wheel typing
18-
- pip install cwltool cwltest html5lib
18+
- pip install -e .[all]
1919

2020
script:
2121
- make RUNNER=cwltool unittest-examples

01-introduction/index.md

Lines changed: 0 additions & 31 deletions
This file was deleted.

02-1st-example/index.md

Lines changed: 0 additions & 104 deletions
This file was deleted.

03-input/index.md

Lines changed: 0 additions & 149 deletions
This file was deleted.

0 commit comments

Comments
 (0)