FazBrowse GitHub Viewer
|
Trending
|
URL:
|
Home
Tools:
[Download Repo ZIP]
[View Raw Code]
[Original HTTPS Page]
minos-cli/.github/workflows/python-tests.yml at main · minos-framework/minos-cli · GitHub
Uh oh!
There was an error while loading.
Please reload this page
.
minos-framework
/
minos-cli
Public
Notifications
You must be signed in to change notification settings
Fork
2
Star
7
Code
Issues
10
Pull requests
1
Actions
Security and quality
0
Insights
Additional navigation options
Code
Issues
Pull requests
Actions
Security and quality
Insights
Expand file tree
Breadcrumbs
minos-cli
/
.github
/
workflows
/
python-tests.yml
Copy path
View runs
More file actions
More file actions
Latest commit
History
History
History
37 lines (27 loc) · 938 Bytes
Breadcrumbs
minos-cli
/
.github
/
workflows
/
python-tests.yml
Copy path
File metadata and controls
37 lines (27 loc) · 938 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
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
name
:
Test Python Package
on
:
push
jobs
:
build
:
runs-on
:
ubuntu-latest
container
:
python:3.9-buster
steps
:
-
name
:
Check out repository code
uses
:
actions/checkout@v2
-
name
:
Install Poetry
uses
:
snok/install-poetry@v1
-
name
:
Install dependencies
run
:
make install
-
name
:
Lint package
run
:
make lint
-
name
:
Test package with coverage
run
:
make coverage
-
name
:
Publish coverage
uses
:
codecov/codecov-action@v2
with
:
token
:
${{ secrets.CODECOV_TOKEN }}
files
:
./coverage.xml
fail_ci_if_error
:
true
-
name
:
Generate documentation
run
:
make docs
-
name
:
Generate build
run
:
make dist
Back
|
FazBrowse Home
|
New Git URL