We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ec73a45 commit 30ac1fbCopy full SHA for 30ac1fb
.github/workflows/build.yml .github/workflows/docs.yml.github/workflows/build.yml renamed to .github/workflows/docs.yml
@@ -1,11 +1,11 @@
1
-name: build
+name: docs
2
on: [push, pull_request]
3
4
permissions:
5
contents: write
6
7
jobs:
8
- build:
+ docs:
9
runs-on: ubuntu-latest
10
steps:
11
- name: Checkout repository
@@ -18,10 +18,7 @@ jobs:
18
python-version: 3
19
20
- name: Install dependencies
21
- run: pip install -e .[build]
22
-
23
- - name: Generate packages
24
- run: python3 -m build
+ run: pip install -e .[docs]
25
26
- name: Build docs
27
run: pdoc src/python_package_template/ -o docs
.github/workflows/lint.yml
@@ -18,7 +18,7 @@ jobs:
- run: pip install -e .[test]
+ run: pip install -e .[lint]
- name: Run Black
run: black --check .
0 commit comments