summaryrefslogtreecommitdiffstats
path: root/.github
diff options
context:
space:
mode:
authorDaniel Baumann <daniel.baumann@progress-linux.org>2024-04-15 16:33:15 +0000
committerDaniel Baumann <daniel.baumann@progress-linux.org>2024-04-15 16:33:15 +0000
commite5f7a41d988de298069eda636e823f374b973bd4 (patch)
treea6a97f4d2ed5e59ab11cbae6b403ddebc5effe00 /.github
parentInitial commit. (diff)
downloadptpython-e5f7a41d988de298069eda636e823f374b973bd4.tar.xz
ptpython-e5f7a41d988de298069eda636e823f374b973bd4.zip
Adding upstream version 3.0.26.upstream/3.0.26upstream
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to '.github')
-rw-r--r--.github/workflows/test.yaml38
1 files changed, 38 insertions, 0 deletions
diff --git a/.github/workflows/test.yaml b/.github/workflows/test.yaml
new file mode 100644
index 0000000..9a50f3b
--- /dev/null
+++ b/.github/workflows/test.yaml
@@ -0,0 +1,38 @@
+name: test
+
+on:
+ push: # any branch
+ pull_request:
+ branches: [master]
+
+jobs:
+ test-ubuntu:
+ runs-on: ubuntu-latest
+ strategy:
+ matrix:
+ python-version: [3.7, 3.8, 3.9, "3.10", "3.11"]
+
+ 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 . ruff mypy pytest readme_renderer
+ pip list
+ - name: Type Checker
+ run: |
+ mypy ptpython
+ ruff .
+ ruff format --check .
+ - 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