summaryrefslogtreecommitdiffstats
path: root/.github
diff options
context:
space:
mode:
authorDaniel Baumann <daniel.baumann@progress-linux.org>2021-11-08 13:25:25 +0000
committerDaniel Baumann <daniel.baumann@progress-linux.org>2021-11-08 13:25:25 +0000
commit97570da1e433558f3fffec0f67b6d15a8d36bc05 (patch)
tree87e8000313403b30628f740be25126fd0c9ad219 /.github
parentAdding upstream version 3.0.19. (diff)
downloadptpython-97570da1e433558f3fffec0f67b6d15a8d36bc05.tar.xz
ptpython-97570da1e433558f3fffec0f67b6d15a8d36bc05.zip
Adding upstream version 3.0.20.upstream/3.0.20
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to '.github')
-rw-r--r--.github/workflows/test.yaml39
1 files changed, 0 insertions, 39 deletions
diff --git a/.github/workflows/test.yaml b/.github/workflows/test.yaml
deleted file mode 100644
index 0368ba7..0000000
--- a/.github/workflows/test.yaml
+++ /dev/null
@@ -1,39 +0,0 @@
-name: test
-
-on:
- push: # any branch
- pull_request:
- branches: [master]
-
-jobs:
- test-ubuntu:
- runs-on: ubuntu-latest
- strategy:
- matrix:
- python-version: [3.6, 3.7, 3.8, 3.9]
-
- steps:
- - uses: actions/checkout@v2
- - name: Setup Python ${{ matrix.python-version }}
- uses: actions/setup-python@v1
- with:
- python-version: ${{ matrix.python-version }}
- - name: Install Dependencies
- run: |
- sudo apt remove python3-pip
- python -m pip install --upgrade pip
- python -m pip install . black isort mypy pytest readme_renderer
- python -m pip install . types-dataclasses # Needed for Python 3.6
- pip list
- - name: Type Checker
- run: |
- mypy ptpython
- isort -c --profile black ptpython examples setup.py
- black --check ptpython examples setup.py
- - name: Run Tests
- run: |
- ./tests/run_tests.py
- - name: Validate README.md
- # Ensure that the README renders correctly (required for uploading to PyPI).
- run: |
- python -m readme_renderer README.rst > /dev/null