Update CI and toxfile to use new group structure

This commit is contained in:
2023-04-13 14:02:25 -04:00
parent ac342d4dc6
commit 750d3c07b6
4 changed files with 29 additions and 33 deletions

View File

@@ -8,7 +8,7 @@
set -e;
CI_CACHE=$HOME/.cache;
POETRY_VERSION=1.2.2;
INSTALL_POETRY_VERSION="${POETRY_VERSION:-1.4.1}";
mkdir --parents "$CI_CACHE";
@@ -26,9 +26,10 @@ poetry --version --no-ansi;
poetry run pip --version;
poetry install \
--quiet \
--remove-untracked \
--no-ansi;
--sync \
--no-ansi \
--no-root \
--only ci;
poetry env info;
poetry run tox --version;

View File

@@ -5,9 +5,11 @@ on:
types: ["opened", "synchronize"]
push:
branches: ["devel"]
env:
POETRY_VERSION: 1.4.1
jobs:
Test:
name: Test with Python ${{ matrix.python.version }}
name: Python ${{ matrix.python.version }}
runs-on: ubuntu-latest
strategy:
matrix:
@@ -20,6 +22,8 @@ jobs:
toxenv: py39
- version: "3.10"
toxenv: py310
- version: "3.11"
toxenv: py311
fail-fast: true
steps:
- name: Checkout