Skip to content

Commit 881d291

Browse files
committed
chore: remove pipeline
1 parent 775fa84 commit 881d291

File tree

2 files changed

+77
-77
lines changed

2 files changed

+77
-77
lines changed

.github/workflows/apidocs.yml

Lines changed: 36 additions & 36 deletions
Original file line numberDiff line numberDiff line change
@@ -1,42 +1,42 @@
1-
name: apidocs
2-
on:
3-
- push
1+
# name: apidocs
2+
# on:
3+
# - push
44

5-
jobs:
6-
deploy:
7-
runs-on: ubuntu-latest
5+
# jobs:
6+
# deploy:
7+
# runs-on: ubuntu-latest
88

9-
steps:
10-
- uses: actions/checkout@master
11-
- name: Set up Python 3.8
12-
uses: actions/setup-python@v2
13-
with:
14-
python-version: 3.8
9+
# steps:
10+
# - uses: actions/checkout@master
11+
# - name: Set up Python 3.8
12+
# uses: actions/setup-python@v2
13+
# with:
14+
# python-version: 3.8
1515

16-
- name: Install requirements for documentation generation
17-
run: |
18-
python -m pip install --upgrade pip setuptools wheel
19-
python -m pip install pytest pydoctor>=22.3.0 .
16+
# - name: Install requirements for documentation generation
17+
# run: |
18+
# python -m pip install --upgrade pip setuptools wheel
19+
# python -m pip install pytest pydoctor>=22.3.0 .
2020

21-
- name: Generate API documentation with pydoctor
22-
run: |
21+
# - name: Generate API documentation with pydoctor
22+
# run: |
2323

24-
# Run simple pydoctor build
25-
pydoctor \
26-
--project-name=PyDocSmith \
27-
--project-url=https://github.com/$GITHUB_REPOSITORY \
28-
--html-viewsource-base=https://github.com/$GITHUB_REPOSITORY/tree/$GITHUB_SHA \
29-
--make-html \
30-
--html-output=./apidocs \
31-
--project-base-dir="." \
32-
--docformat=restructuredtext \
33-
--system-class=PyDocSmith.tests._pydoctor.HidesTestsPydoctorSystem \
34-
--intersphinx=https://docs.python.org/3/objects.inv \
35-
./PyDocSmith
24+
# # Run simple pydoctor build
25+
# pydoctor \
26+
# --project-name=PyDocSmith \
27+
# --project-url=https://github.com/$GITHUB_REPOSITORY \
28+
# --html-viewsource-base=https://github.com/$GITHUB_REPOSITORY/tree/$GITHUB_SHA \
29+
# --make-html \
30+
# --html-output=./apidocs \
31+
# --project-base-dir="." \
32+
# --docformat=restructuredtext \
33+
# --system-class=PyDocSmith.tests._pydoctor.HidesTestsPydoctorSystem \
34+
# --intersphinx=https://docs.python.org/3/objects.inv \
35+
# ./PyDocSmith
3636

37-
- name: Push API documentation to Github Pages
38-
uses: peaceiris/actions-gh-pages@v3
39-
with:
40-
github_token: ${{ secrets.PYDOCSMITH_DEPLOY }}
41-
publish_dir: ./apidocs
42-
commit_message: "Generate API documentation"
37+
# - name: Push API documentation to Github Pages
38+
# uses: peaceiris/actions-gh-pages@v3
39+
# with:
40+
# github_token: ${{ secrets.PYDOCSMITH_DEPLOY }}
41+
# publish_dir: ./apidocs
42+
# commit_message: "Generate API documentation"

.github/workflows/build.yml

Lines changed: 41 additions & 41 deletions
Original file line numberDiff line numberDiff line change
@@ -1,45 +1,45 @@
1-
name: Build
1+
# name: Build
22

3-
on: [push, pull_request]
3+
# on: [push, pull_request]
44

5-
env:
6-
PYTHONIOENCODING: "utf-8"
5+
# env:
6+
# PYTHONIOENCODING: "utf-8"
77

8-
jobs:
9-
build:
10-
runs-on: ${{ matrix.os }}
11-
strategy:
12-
fail-fast: false
13-
matrix:
14-
# os: [ubuntu-20.04, macOS-10.15, windows-2019]
15-
os: [ubuntu-20.04]
16-
python-version: [3.6, 3.7, 3.8, 3.9, "3.10", 3.11, 3.12.0-rc.2]
17-
steps:
18-
- uses: actions/checkout@v2
19-
- name: Set up Python ${{ matrix.python-version }}
20-
uses: actions/setup-python@v2
21-
with:
22-
python-version: ${{ matrix.python-version }}
23-
- name: Install dependencies
24-
run: |
25-
python3 -m pip install poetry
26-
poetry install -v
27-
- name: Run tests
28-
run: poetry run pytest
8+
# jobs:
9+
# build:
10+
# runs-on: ${{ matrix.os }}
11+
# strategy:
12+
# fail-fast: false
13+
# matrix:
14+
# # os: [ubuntu-20.04, macOS-10.15, windows-2019]
15+
# os: [ubuntu-20.04]
16+
# python-version: [3.6, 3.7, 3.8, 3.9, "3.10", 3.11, 3.12.0-rc.2]
17+
# steps:
18+
# - uses: actions/checkout@v2
19+
# - name: Set up Python ${{ matrix.python-version }}
20+
# uses: actions/setup-python@v2
21+
# with:
22+
# python-version: ${{ matrix.python-version }}
23+
# - name: Install dependencies
24+
# run: |
25+
# python3 -m pip install poetry
26+
# poetry install -v
27+
# - name: Run tests
28+
# run: poetry run pytest
2929

30-
style:
31-
runs-on: ubuntu-latest
32-
strategy:
33-
fail-fast: false
34-
steps:
35-
- uses: actions/checkout@v2
36-
- name: Set up Python
37-
uses: actions/setup-python@v2
38-
with:
39-
python-version: 3.9
40-
- name: Install dependencies
41-
run: |
42-
python3 -m pip install poetry
43-
poetry install -v
44-
- name: Run linters
45-
run: poetry run pre-commit run -a
30+
# style:
31+
# runs-on: ubuntu-latest
32+
# strategy:
33+
# fail-fast: false
34+
# steps:
35+
# - uses: actions/checkout@v2
36+
# - name: Set up Python
37+
# uses: actions/setup-python@v2
38+
# with:
39+
# python-version: 3.9
40+
# - name: Install dependencies
41+
# run: |
42+
# python3 -m pip install poetry
43+
# poetry install -v
44+
# - name: Run linters
45+
# run: poetry run pre-commit run -a

0 commit comments

Comments
 (0)