diff options
author | John L. Villalovos <john@sodarock.com> | 2021-12-12 08:08:43 -0800 |
---|---|---|
committer | John L. Villalovos <john@sodarock.com> | 2021-12-12 08:08:43 -0800 |
commit | ae5a016b6c5d731bcf6db4ef9d433616b519dfa5 (patch) | |
tree | 91ba5bcbeaeddbd64db81dafc36df4a8af816cf1 | |
parent | af33affa4888fa83c31557ae99d7bbd877e9a605 (diff) | |
download | gitlab-jlvillal/py311_alpha.tar.gz |
chore: add Python 3.11 testingjlvillal/py311_alpha
Add a unit test for Python 3.11. This will use the latest version of
Python 3.11 that is available from
https://github.com/actions/python-versions/
At this time it is 3.11.0-alpha.2 but will move forward over time
until the final 3.11 release and updates. So 3.11.0, 3.11.1, ... will
be matched.
-rw-r--r-- | .github/workflows/test.yml | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index d13f600..1d39246 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -42,6 +42,10 @@ jobs: python: version: "3.10" toxenv: py310,smoke + - os: ubuntu-latest + python: + version: '3.11.0-alpha - 3.11' # SemVer's version range syntax + toxenv: py311,smoke steps: - uses: actions/checkout@v2 - name: Set up Python ${{ matrix.python.version }} |