FazBrowse GitHub Viewer
|
Trending
|
URL:
|
Home
Tools:
[Download Repo ZIP]
[View Raw Code]
[Original HTTPS Page]
cmd2-table/.github/workflows/tests.yml at main · python-cmd2/cmd2-table · GitHub
Uh oh!
There was an error while loading.
Please reload this page
.
python-cmd2
/
cmd2-table
Public
Notifications
You must be signed in to change notification settings
Fork
0
Star
1
Code
Issues
0
Pull requests
3
Actions
Projects
Security and quality
0
Insights
Additional navigation options
Code
Issues
Pull requests
Actions
Projects
Security and quality
Insights
Expand file tree
Breadcrumbs
cmd2-table
/
.github
/
workflows
/
tests.yml
Copy path
View runs
More file actions
More file actions
Latest commit
History
History
History
39 lines (35 loc) · 1.05 KB
Breadcrumbs
cmd2-table
/
.github
/
workflows
/
tests.yml
Copy path
File metadata and controls
39 lines (35 loc) · 1.05 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
#
For documentation on GitHub Actions Workflows, see:
#
https://docs.github.com/en/actions/reference/workflow-syntax-for-github-actions
name
:
Tests
on
:
pull_request
:
types
:
[opened, synchronize, reopened]
push
:
branches
:
[main]
jobs
:
tests
:
strategy
:
matrix
:
os
:
[ubuntu-latest, macos-latest, windows-latest]
python-version
:
["3.10", "3.11", "3.12", "3.13", "3.14", "3.14t"]
fail-fast
:
false
runs-on
:
${{ matrix.os }}
defaults
:
run
:
shell
:
bash
steps
:
-
name
:
Check out
uses
:
actions/checkout@v6
with
:
fetch-depth
:
0
#
Needed for setuptools_scm to work correctly
-
name
:
Install uv
uses
:
astral-sh/setup-uv@v7
-
name
:
Set up Python ${{ matrix.python-version }}
uses
:
actions/setup-python@v6
with
:
python-version
:
${{ matrix.python-version }}
allow-prereleases
:
true
-
name
:
Install the project
run
:
uv sync --all-extras --dev
-
name
:
Run tests
run
:
uv run python -Xutf8 -m pytest tests
Back
|
FazBrowse Home
|
New Git URL