diff options
author | Daniel Baumann <daniel.baumann@progress-linux.org> | 2023-07-05 06:16:17 +0000 |
---|---|---|
committer | Daniel Baumann <daniel.baumann@progress-linux.org> | 2023-07-05 06:16:17 +0000 |
commit | 10ff631215775e1d89a639ad6312d03bc40839e1 (patch) | |
tree | 55df3ef836d79e385d9b0e0d575323006b6365f5 /.github/workflows | |
parent | Releasing debian version 0.6.0-2. (diff) | |
download | pydyf-10ff631215775e1d89a639ad6312d03bc40839e1.tar.xz pydyf-10ff631215775e1d89a639ad6312d03bc40839e1.zip |
Merging upstream version 0.7.0.
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to '.github/workflows')
-rw-r--r-- | .github/workflows/tests.yml | 9 |
1 files changed, 7 insertions, 2 deletions
diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index d2057b0..89003af 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -8,9 +8,14 @@ jobs: strategy: matrix: os: [ubuntu-latest, macos-latest, windows-latest] - python-version: ['3.7', '3.8', '3.9', '3.10', 'pypy-3.8'] + python-version: ['3.11'] + include: + - os: ubuntu-latest + python-version: '3.7' + - os: ubuntu-latest + python-version: 'pypy-3.8' steps: - - uses: actions/checkout@v2 + - uses: actions/checkout@v3 - uses: actions/setup-python@v2 with: python-version: ${{ matrix.python-version }} |