FazBrowse GitHub Viewer
|
Trending
|
URL:
|
Home
Tools:
[Download Repo ZIP]
[View Raw Code]
[Original HTTPS Page]
html5lib-python/.github/workflows/python-tox.yml at master · zackw/html5lib-python · GitHub
zackw
/
html5lib-python
Public
forked from
html5lib/html5lib-python
Notifications
You must be signed in to change notification settings
Fork
0
Star
0
Code
Pull requests
0
Actions
Projects
Security and quality
0
Insights
Additional navigation options
Code
Pull requests
Actions
Projects
Security and quality
Insights
Expand file tree
Breadcrumbs
html5lib-python
/
.github
/
workflows
/
python-tox.yml
Copy path
View runs
More file actions
More file actions
Latest commit
History
History
History
21 lines (21 loc) · 737 Bytes
Breadcrumbs
html5lib-python
/
.github
/
workflows
/
python-tox.yml
Copy path
File metadata and controls
21 lines (21 loc) · 737 Bytes
Raw
Copy raw file
Download raw file
Open symbols panel
Edit and raw actions
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
on
:
[pull_request, push]
jobs
:
build
:
#
Prevent duplicate builds for 'internal' pull requests on existing commits
#
Credit: https://github.community/t/duplicate-checks-on-push-and-pull-request-simultaneous-event/18012
if
:
github.event.push || github.event.pull_request.head.repo.full_name != github.repository
runs-on
:
ubuntu-latest
strategy
:
matrix
:
python
:
[2.7, 3.5, 3.6, 3.7, 3.8, pypy-2.7, pypy3]
steps
:
-
uses
:
actions/checkout@v2
with
:
submodules
:
true
-
uses
:
actions/setup-python@v2
with
:
python-version
:
${{ matrix.python }}
-
run
:
pip install tox
-
run
:
tox -e py
-
if
:
${{ always() }}
run
:
python debug-info.py
Back
|
FazBrowse Home
|
New Git URL