-
Notifications
You must be signed in to change notification settings - Fork 71
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'useblocks:master' into master
- Loading branch information
Showing
137 changed files
with
1,657 additions
and
1,286 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -5,7 +5,7 @@ jobs: | |
name: "py${{ matrix.python-version }} sp${{ matrix.sphinx-version }} do${{ matrix.docutils-version }} ${{ matrix.os }}" | ||
runs-on: ${{ matrix.os }} | ||
strategy: | ||
fail-fast: true # Set on "false" to get the results of ALL builds | ||
fail-fast: false # Set on "false" to get the results of ALL builds | ||
matrix: | ||
os: ["ubuntu-latest"] | ||
# 3.9.8 seems to be broken with type_ast | ||
|
@@ -56,3 +56,17 @@ jobs: | |
with: | ||
python-version: '3.8' | ||
- uses: pre-commit/[email protected] | ||
|
||
check: | ||
# This job does nothing and is only used for the branch protection | ||
# see https://github.com/marketplace/actions/alls-green#why | ||
if: always() | ||
needs: | ||
- lint | ||
- tests | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: Decide whether the needed jobs succeeded or failed | ||
uses: re-actors/alls-green@release/v1 | ||
with: | ||
jobs: ${{ toJSON(needs) }} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -37,3 +37,5 @@ Duodu Randy <[email protected]> | |
Christian Wappler <[email protected]> | ||
|
||
Chris Sewell <[email protected]> | ||
|
||
Simon Leiner <[email protected]> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -14,6 +14,7 @@ | |
TEST_DEPENDENCIES = [ | ||
"pytest", | ||
"pytest-xdist", | ||
"pytest-xprocess", | ||
"syrupy", | ||
"responses", | ||
"lxml", | ||
|
Oops, something went wrong.