diff --git a/.github/workflows/full-tests.yml b/.github/workflows/full-tests.yml index 659aec2a..c6f92636 100644 --- a/.github/workflows/full-tests.yml +++ b/.github/workflows/full-tests.yml @@ -2,23 +2,27 @@ name: Full Tests on: push: - branches: - - main - paths: - - "pyproject.toml" - release: - types: - - created + branches: ["feature/poetry"] + pull_request: + branches: ["feature/poetry"] jobs: call-tests: strategy: matrix: - os: [ubuntu-latest, windows-latest, macos-latest] + os: [Ubuntu, Windows, macOS] python-version: ["3.9", "3.10", "3.11"] + include: + - os: Ubuntu + image: ubuntu-latest + - os: Windows + image: windows-2022 + - os: macOS + image: macos-14 fail-fast: false uses: ./.github/workflows/_test.yml with: os: ${{ matrix.os }} + image: ${{ matrix.image }} python-version: ${{ matrix.python-version }}