FazBrowse GitHub Viewer
|
Trending
|
URL:
|
Home
Tools:
[Download Repo ZIP]
[View Raw Code]
[Original HTTPS Page]
lucid/.github/workflows/python-tests.yml at master · tensorflow/lucid · GitHub
Uh oh!
There was an error while loading.
Please reload this page
.
This repository was archived by the owner on Apr 10, 2024. It is now read-only.
tensorflow
/
lucid
Public archive
Notifications
You must be signed in to change notification settings
Fork
643
Star
4.7k
Code
Issues
76
Pull requests
8
Actions
Wiki
Security and quality
0
Insights
Additional navigation options
Code
Issues
Pull requests
Actions
Wiki
Security and quality
Insights
Expand file tree
Breadcrumbs
lucid
/
.github
/
workflows
/
python-tests.yml
Copy path
View runs
More file actions
More file actions
Latest commit
History
History
History
40 lines (36 loc) · 1.02 KB
Breadcrumbs
lucid
/
.github
/
workflows
/
python-tests.yml
Copy path
File metadata and controls
40 lines (36 loc) · 1.02 KB
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
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
name
:
lucid tests
on
:
[push, pull_request]
jobs
:
checks
:
runs-on
:
ubuntu-latest
strategy
:
max-parallel
:
4
matrix
:
python-version
:
[3.7]
steps
:
-
uses
:
actions/checkout@v1
-
name
:
Set up Python ${{ matrix.python-version }}
uses
:
actions/setup-python@v1
with
:
python-version
:
${{ matrix.python-version }}
-
name
:
Install dependencies
run
:
|
python -m pip install --upgrade pip
pip install tox
-
name
:
Test with tox
run
:
tox -e py$(echo ${{ matrix.python-version }} | tr -d .)
-
name
:
Coveralls Parallel
uses
:
AndreMiras/coveralls-python-action@develop
with
:
github-token
:
${{ secrets.GITHUB_TOKEN }}
flag-name
:
run-${{ matrix.python-version }}
parallel
:
true
finish
:
needs
:
checks
runs-on
:
ubuntu-latest
steps
:
-
name
:
Coveralls Finished
uses
:
AndreMiras/coveralls-python-action@develop
with
:
github-token
:
${{ secrets.GITHUB_TOKEN }}
parallel-finished
:
true
Back
|
FazBrowse Home
|
New Git URL