Skip to content

Commit

Permalink
Adjust workflow to avoid parallel compilation
Browse files Browse the repository at this point in the history
  • Loading branch information
swillner authored and rgieseke committed Apr 3, 2019
1 parent fc8ef68 commit 56fa99e
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion .github/main.workflow
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,7 @@ action "Documentation" {
PYTHON_VERSION = "3.7"
PIP_PACKAGES = "sphinx>=1.8 sphinx_rtd_theme"
}
needs = ["Formatting", "Linters"]
}

action "Formatting" {
Expand Down Expand Up @@ -56,7 +57,7 @@ action "Tests" {
PYTHON_VERSION = "3.7"
PIP_PACKAGES = "pytest pytest-cov"
}
needs = ["Documentation", "Formatting", "Linters"]
needs = ["Documentation"]
}

action "Coverage" {
Expand Down

0 comments on commit 56fa99e

Please sign in to comment.