FazBrowse GitHub Viewer
|
Trending
|
URL:
|
Home
Tools:
[Download Repo ZIP]
[View Raw Code]
[Original HTTPS Page]
bpython/.github/workflows/build.yaml at main · bpython/bpython · GitHub
Uh oh!
There was an error while loading.
Please reload this page
.
bpython
/
bpython
Public
Uh oh!
There was an error while loading.
Please reload this page
.
Notifications
You must be signed in to change notification settings
Fork
252
Star
2.8k
Code
Issues
144
Pull requests
5
Actions
Projects
Wiki
Security and quality
0
Insights
Additional navigation options
Code
Issues
Pull requests
Actions
Projects
Wiki
Security and quality
Insights
Expand file tree
Breadcrumbs
bpython
/
.github
/
workflows
/
build.yaml
Copy path
View runs
More file actions
More file actions
Latest commit
History
History
History
54 lines (52 loc) · 1.48 KB
Breadcrumbs
bpython
/
.github
/
workflows
/
build.yaml
Copy path
File metadata and controls
54 lines (52 loc) · 1.48 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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
name
:
CI
on
:
push
:
pull_request
:
schedule
:
#
run at 7:00 on the first of every month
-
cron
:
"
0 7 1 * *
"
jobs
:
build
:
runs-on
:
ubuntu-latest
continue-on-error
:
${{ matrix.python-version == 'pypy-3.9' }}
strategy
:
fail-fast
:
false
matrix
:
python-version
:
-
"
3.11
"
-
"
3.12
"
-
"
3.13
"
-
"
3.14
"
-
"
pypy-3.11
"
steps
:
-
uses
:
actions/checkout@v7
with
:
fetch-depth
:
0
-
name
:
Set up Python ${{ matrix.python-version }}
uses
:
actions/setup-python@v7
with
:
python-version
:
${{ matrix.python-version }}
-
name
:
Install dependencies
run
:
|
python -m pip install --upgrade pip
pip install -r requirements.txt
pip install "urwid >= 1.0" twisted watchdog "jedi >=0.16" babel "sphinx >=1.5"
pip install pytest pytest-cov numpy
-
name
:
Build with Python ${{ matrix.python-version }}
run
:
|
python setup.py build
-
name
:
Build documentation
run
:
|
python setup.py build_sphinx
python setup.py build_sphinx_man
-
name
:
Test with pytest
run
:
|
pytest --cov=bpython --cov-report=xml -v
-
name
:
Upload coverage to Codecov
uses
:
codecov/codecov-action@v7
env
:
PYTHON_VERSION
:
${{ matrix.python-version }}
with
:
file
:
./coverage.xml
env_vars
:
PYTHON_VERSION
if
:
${{ always() }}
Back
|
FazBrowse Home
|
New Git URL