FazBrowse GitHub Viewer
|
Trending
|
URL:
|
Home
Tools:
[Download Repo ZIP]
[View Raw Code]
[Original HTTPS Page]
msgpack-python/.github/workflows/docs.yaml at main · msgpack/msgpack-python · GitHub
Uh oh!
There was an error while loading.
Please reload this page
.
msgpack
/
msgpack-python
Public
Notifications
You must be signed in to change notification settings
Fork
255
Star
2.1k
Code
Issues
4
Pull requests
5
Discussions
Actions
Security and quality
1
Insights
Additional navigation options
Code
Issues
Pull requests
Discussions
Actions
Security and quality
Insights
Expand file tree
Breadcrumbs
msgpack-python
/
.github
/
workflows
/
docs.yaml
Copy path
View runs
More file actions
More file actions
Latest commit
History
History
History
33 lines (27 loc) · 934 Bytes
Breadcrumbs
msgpack-python
/
.github
/
workflows
/
docs.yaml
Copy path
File metadata and controls
33 lines (27 loc) · 934 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
name
:
docs
on
:
["push", "pull_request"]
jobs
:
docs
:
#
We want to run on external PRs, but not on our own internal PRs as they'll be run
#
by the push to the branch.
if
:
github.event_name == 'push' || github.event.pull_request.head.repo.full_name != github.repository
runs-on
:
ubuntu-latest
steps
:
-
name
:
Checkout
uses
:
actions/checkout@3d3c42e5aac5ba805825da76410c181273ba90b1
#
v7.0.1
-
name
:
Setup Python
uses
:
actions/setup-python@5fda3b95a4ea91299a34e894583c3862153e4b97
#
v7.0.0
with
:
python-version
:
'
3.x
'
cache
:
"
pip
"
cache-dependency-path
:
|
requirements.txt
docs/requirements.txt
-
name
:
Build
run
:
|
pip install -r requirements.txt
make cython
-
name
:
Sphinx Documentation Generator
run
:
|
pip install -r docs/requirements.txt
make docs
Back
|
FazBrowse Home
|
New Git URL