From be0307709515c2c7d9d62d514c2b4be2d6707794 Mon Sep 17 00:00:00 2001 From: prezakhani <13303554+Pouyanpi@users.noreply.github.com> Date: Sat, 26 Oct 2024 14:33:33 +0200 Subject: [PATCH] fix --- .github/workflows/full-tests.yml | 20 ++++++++++++-------- 1 file changed, 12 insertions(+), 8 deletions(-) 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 }}