python-pskc branch master updated. 1.2-6-gfa32f6b
[
Date Prev][
Date Next]
[
Thread Prev][
Thread Next]
python-pskc branch master updated. 1.2-6-gfa32f6b
- From: Commits of the python-pskc project <python-pskc-commits [at] lists.arthurdejong.org>
- To: python-pskc-commits [at] lists.arthurdejong.org
- Reply-to: python-pskc-users [at] lists.arthurdejong.org, python-pskc-commits [at] lists.arthurdejong.org
- Subject: python-pskc branch master updated. 1.2-6-gfa32f6b
- Date: Tue, 27 Jun 2023 19:14:21 +0200 (CEST)
This is an automated email from the git hooks/post-receive script. It was
generated because a ref change was pushed to the repository containing
the project "python-pskc".
The branch, master has been updated
via fa32f6bbf850722927890bc49dab7c6ea135cf74 (commit)
from b95f075c64e3c23c5bc4e18f0934dd50be345f8c (commit)
Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we list those
revisions in full, below.
- Log -----------------------------------------------------------------
https://arthurdejong.org/git/python-pskc/commit/?id=fa32f6bbf850722927890bc49dab7c6ea135cf74
commit fa32f6bbf850722927890bc49dab7c6ea135cf74
Author: Arthur de Jong <arthur@arthurdejong.org>
Date: Tue Jun 27 19:03:51 2023 +0200
Run Python 2.7 tests in a container for GitHub Actions
See https://github.com/actions/setup-python/issues/672
diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml
index 73115d4..e83c4f6 100644
--- a/.github/workflows/test.yml
+++ b/.github/workflows/test.yml
@@ -9,12 +9,27 @@ on:
- cron: '9 0 * * 1'
jobs:
+ base_py27:
+ runs-on: ubuntu-20.04
+ container:
+ image: python:2.7.18-buster
+ strategy:
+ fail-fast: false
+ matrix:
+ python-version: [2.7]
+ flavour: [signxml, legacy, legacy-defusedxml, lxml, lxml-defusedxml]
+ steps:
+ - uses: actions/checkout@v3
+ - name: Install dependencies
+ run: python -m pip install --upgrade pip virtualenv tox
+ - name: Run tox
+ run: tox -e "$(echo py${{ matrix.python-version }}-${{ matrix.flavour
}} | sed -e 's/[.]//g;s/pypypy/pypy/')" --skip-missing-interpreters false
base:
runs-on: ubuntu-20.04
strategy:
fail-fast: false
matrix:
- python-version: [2.7, 3.5, 3.6, 3.7, 3.8, 3.9, '3.10', 3.11, pypy2.7,
pypy3.8, pypy3.9]
+ python-version: [3.5, 3.6, 3.7, 3.8, 3.9, '3.10', 3.11, pypy2.7,
pypy3.8, pypy3.9]
flavour: [signxml]
steps:
- uses: actions/checkout@v3
@@ -34,7 +49,7 @@ jobs:
strategy:
fail-fast: false
matrix:
- python-version: [2.7, 3.11]
+ python-version: [3.11]
flavour: [legacy, legacy-defusedxml, lxml, lxml-defusedxml]
steps:
- uses: actions/checkout@v3
-----------------------------------------------------------------------
Summary of changes:
.github/workflows/test.yml | 19 +++++++++++++++++--
1 file changed, 17 insertions(+), 2 deletions(-)
hooks/post-receive
--
python-pskc
- python-pskc branch master updated. 1.2-6-gfa32f6b,
Commits of the python-pskc project