FazBrowse GitHub Viewer
|
Trending
|
URL:
|
Home
Tools:
[Download Repo ZIP]
[View Raw Code]
[Original HTTPS Page]
matplotlib-inline/.github/workflows/main.yml at main · ipython/matplotlib-inline · GitHub
Uh oh!
There was an error while loading.
Please reload this page
.
ipython
/
matplotlib-inline
Public
Uh oh!
There was an error while loading.
Please reload this page
.
Notifications
You must be signed in to change notification settings
Fork
39
Star
30
Code
Issues
16
Pull requests
2
Actions
Projects
Security and quality
0
Insights
Additional navigation options
Code
Issues
Pull requests
Actions
Projects
Security and quality
Insights
Expand file tree
Breadcrumbs
matplotlib-inline
/
.github
/
workflows
/
main.yml
Copy path
View runs
More file actions
More file actions
Latest commit
History
History
History
83 lines (67 loc) · 1.99 KB
Breadcrumbs
matplotlib-inline
/
.github
/
workflows
/
main.yml
Copy path
File metadata and controls
83 lines (67 loc) · 1.99 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
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
name
:
Tests
on
:
push
:
branches
:
-
main
pull_request
:
permissions
:
contents
:
read
defaults
:
run
:
shell
:
bash -l {0}
concurrency
:
group
:
${{ github.workflow }}-${{ github.ref }}
cancel-in-progress
:
true
jobs
:
run
:
runs-on
:
${{ matrix.os }}
timeout-minutes
:
3
strategy
:
fail-fast
:
false
matrix
:
os
:
[ubuntu-latest]
python-version
:
["3.10", "3.11", "3.12", "3.13", "3.14", "3.14t"]
include
:
#
- os: macos-latest
#
python-version: "3.14"
-
os
:
windows-latest
python-version
:
"
3.14
"
steps
:
-
name
:
Checkout
uses
:
actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd
#
v6.0.2
with
:
persist-credentials
:
false
-
name
:
Setup Python ${{ matrix.python-version }}
uses
:
actions/setup-python@a309ff8b426b58ec0e2a45f0f869d46889d02405
#
v6
with
:
python-version
:
${{ matrix.python-version }}
-
name
:
Install package with test dependencies
#
matplotlib is not a dependency but tests need it
run
:
|
pip install .[test]
pip install matplotlib
-
name
:
Test installation without nbdime
run
:
pytest -v
-
name
:
Test flake8
if
:
${{ matrix.python-version == '3.14' }}
run
:
flake8 matplotlib_inline --ignore=E501,W504,W503
-
name
:
Test Build
if
:
${{ matrix.python-version == '3.14' }}
run
:
|
pip install build
python -m build
-
name
:
Install ruff
if
:
${{ matrix.python-version == '3.14' }}
run
:
pip install ruff
-
name
:
Check code with ruff
if
:
${{ matrix.python-version == '3.14' }}
run
:
ruff check matplotlib_inline
-
name
:
Check formatting with ruff
if
:
${{ matrix.python-version == '3.14' }}
run
:
ruff format matplotlib_inline --check
-
name
:
install Mypy
if
:
${{ matrix.python-version == '3.14' }}
run
:
pip install mypy matplotlib
-
name
:
run mypy
if
:
${{ matrix.python-version == '3.14' }}
run
:
mypy .
Back
|
FazBrowse Home
|
New Git URL