summaryrefslogtreecommitdiff
path: root/.github/workflows/pythonpackage.yml
diff options
context:
space:
mode:
authorSebastian Thiel <sebastian.thiel@icloud.com>2023-01-17 08:16:35 +0100
committerGitHub <noreply@github.com>2023-01-17 08:16:35 +0100
commitf594266acf09896608234947611fb3af356130dd (patch)
treeb76039d9ebb1b0789449b51dfea93b41a9259ae1 /.github/workflows/pythonpackage.yml
parent3901d4ccdbd7c2450ff6faadebf2d33e2b246a7b (diff)
parent8a8047438ef9c3a7ec4ea1fff34ffa3e497c9a06 (diff)
downloadgitpython-f594266acf09896608234947611fb3af356130dd.tar.gz
Merge pull request #1541 from hugovk/add-3.11
Declare support for Python 3.11
Diffstat (limited to '.github/workflows/pythonpackage.yml')
-rw-r--r--.github/workflows/pythonpackage.yml12
1 files changed, 2 insertions, 10 deletions
diff --git a/.github/workflows/pythonpackage.yml b/.github/workflows/pythonpackage.yml
index 5373dace..6d6c6795 100644
--- a/.github/workflows/pythonpackage.yml
+++ b/.github/workflows/pythonpackage.yml
@@ -3,11 +3,7 @@
name: Python package
-on:
- push:
- branches: [ main ]
- pull_request:
- branches: [ main ]
+on: [push, pull_request, workflow_dispatch]
permissions:
contents: read
@@ -17,6 +13,7 @@ jobs:
runs-on: ubuntu-latest
strategy:
+ fail-fast: false
matrix:
python-version: [3.7, 3.8, 3.9, "3.10", "3.11"]
@@ -47,11 +44,6 @@ jobs:
# and cause subsequent tests to fail
cat test/fixtures/.gitconfig >> ~/.gitconfig
- - name: Lint with flake8
- run: |
- set -x
- flake8
-
- name: Check types with mypy
# With new versions of pypi new issues might arise. This is a problem if there is nobody able to fix them,
# so we have to ignore errors until that changes.