Skip to content

Commit

Permalink
Merge remote-tracking branch 'origin/main' into release
Browse files Browse the repository at this point in the history
  • Loading branch information
mr-c committed Oct 18, 2022
2 parents 61e8478 + 09030ed commit 1ec30fc
Show file tree
Hide file tree
Showing 5 changed files with 17 additions and 9 deletions.
4 changes: 2 additions & 2 deletions .zenodo.json
Expand Up @@ -15,7 +15,7 @@
"name": "bamiwoaluko"
},
{
"orcid": "https://orcid.org/0000-0002-6206-4638>",
"orcid": "https://orcid.org/0000-0002-6206-4638",
"name": "Benjamin Carr"
},
{
Expand All @@ -36,7 +36,7 @@
"name": "Ngumih Fien"
},
{
"name": "gathoni-k"
"name": "Mary Gathoni"
},
{
"name": "Henry Liu"
Expand Down
2 changes: 1 addition & 1 deletion AUTHORS.md
Expand Up @@ -8,7 +8,7 @@ Thank you to the following contributors (in alphabetical order by user name):
* Eugene Miloslavsky (@emiloslavsky)
* Robin Long (@longr) <https://orcid.org/0000-0003-2249-645X>
* Ngumih Fien (@Fienne)
* @gathoni-k
* Mary Gathoni (@gathoni-k)
* Henry Liu (@HenryLiu0)
* Marijke J. van Baren (@Jeltje)
* @jessMaia
Expand Down
11 changes: 9 additions & 2 deletions CONTRIBUTING.md
Expand Up @@ -102,14 +102,21 @@ tool. You must have a recent version of Python 3.6+ installed to build the proje
locally. It is also recommended having `make` (otherwise look at the commands used
in `Makefile`).

The `dot` program from Graphviz is needed to render some of the diagrams.

* For Debian/Ubuntu users:
```bash
sudo apt get install graphviz
```
* For non-Debian/Ubuntu users, follow the directions at [the GraphViz download site](https://graphviz.org/download).
```bash
# Create and activate a virtual environment
python -m venv venv
source venv/bin/activate
# update the version of pip, setuptools, and wheel
(venv) pip install -U pip setuptools wheel
# Install the dependencies in your virtual environment
(venv) pip install .[all]
# Install all the dependencies in your virtual environment.
(venv) pip install ".[all]"
# Create the HTML to visualize locally
(venv) make html
(venv) open _build/index.html
Expand Down
3 changes: 1 addition & 2 deletions README.md
@@ -1,7 +1,6 @@
[![DOI for the latest version](https://zenodo.org/badge/89621457.svg)](https://zenodo.org/badge/latestdoi/89621457)

[![Syntax Check](https://travis-ci.org/common-workflow-language/user_guide.svg?branch=main)](https://travis-ci.org/common-workflow-language/user_guide)

[![Syntax Check](https://app.travis-ci.com/common-workflow-language/user_guide.svg?branch=main)](https://app.travis-ci.com/common-workflow-language/user_guide)

This is the source of the official user guide for the Common Workflow Language standards.

Expand Down
6 changes: 4 additions & 2 deletions src/topics/using-containers.md
Expand Up @@ -52,8 +52,10 @@ used a container called `node:slim`.
Provide a "hello.js" and invoke `cwltool` providing the tool description and the
input object on the command line:

```{code-block} console
$ echo "console.log(\"Hello World\");" > hello.js
```{literalinclude} /_includes/cwl/using-containers/hello.js
:language: javascript
:caption: "`hello.js`"
:name: hello.js
```

```{runcmd} cwltool docker.cwl docker-job.yml
Expand Down

0 comments on commit 1ec30fc

Please sign in to comment.