FazBrowse GitHub Viewer
|
Trending
|
URL:
|
Home
Tools:
[Download Repo ZIP]
[View Raw Code]
[Original HTTPS Page]
python-package-template/.github/workflows/test.yml at master · remarkablemark/python-package-template · GitHub
remarkablemark
/
python-package-template
Public template
Notifications
You must be signed in to change notification settings
Fork
0
Star
2
Code
Issues
0
Pull requests
0
Discussions
Actions
Projects
Security and quality
0
Insights
Additional navigation options
Code
Issues
Pull requests
Discussions
Actions
Projects
Security and quality
Insights
Expand file tree
Breadcrumbs
python-package-template
/
.github
/
workflows
/
test.yml
Copy path
View runs
More file actions
More file actions
Latest commit
History
History
History
29 lines (23 loc) · 619 Bytes
Breadcrumbs
python-package-template
/
.github
/
workflows
/
test.yml
Copy path
File metadata and controls
29 lines (23 loc) · 619 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
name
:
test
on
:
[push, pull_request]
permissions
:
contents
:
read
jobs
:
test
:
runs-on
:
ubuntu-latest
steps
:
-
name
:
Checkout repository
uses
:
actions/checkout@v7
-
name
:
Install uv
uses
:
astral-sh/setup-uv@v7
-
name
:
Install dependencies
run
:
uv sync --extra test
-
name
:
Run tests with coverage
run
:
|
uv run coverage run -m pytest
uv run coverage report
uv run coverage xml
-
name
:
Upload coverage to Codecov
uses
:
codecov/codecov-action@v7
with
:
token
:
${{ secrets.CODECOV_TOKEN }}
Back
|
FazBrowse Home
|
New Git URL