-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
2917a0b
commit 06c9994
Showing
2 changed files
with
31 additions
and
0 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 |
---|---|---|
@@ -0,0 +1,12 @@ | ||
Some errors | ||
=========== | ||
|
||
Those triple backticks are not a thing in rst: | ||
```here```. | ||
|
||
Here ``Callable``s the "s" should be separated from ``Callable`` using | ||
Check failure on line 7 in .github/file.rst GitHub Actions / test
Check failure on line 7 in .github/file.rst GitHub Actions / test
|
||
a "backslash-space". | ||
|
||
... versionchanged:: 3.11 | ||
Raises :exc:`TypeError` instead of :exc:`AttributeError` if *cm* | ||
is not a context manager. |
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 |
---|---|---|
@@ -0,0 +1,19 @@ | ||
name: Test | ||
|
||
on: | ||
push: | ||
branches: | ||
main | ||
pull_request: | ||
branches: | ||
main | ||
|
||
jobs: | ||
test: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v4 | ||
- uses: ./ | ||
- run: pip install sphinx-lint>=0.9.0 | ||
- run: sphinx-lint .github/file.rst >/dev/null | ||
continue-on-error: true |