diff --git a/.github/workflows/test-pytest-slow.yaml b/.github/workflows/test-pytest-slow.yaml index a5fe93ee7..5f6ba8af7 100644 --- a/.github/workflows/test-pytest-slow.yaml +++ b/.github/workflows/test-pytest-slow.yaml @@ -4,6 +4,14 @@ on: schedule: - cron: "0 17 * * 5" # at 05:00 PM, only on Friday timezone: "America/Sao_Paulo" + push: + branches: + - main + paths: + - "**.py" + - ".github/**" + - "pyproject.toml" + - "requirements*" defaults: run: @@ -15,7 +23,7 @@ jobs: strategy: matrix: fail-fast: false - python-version: [3.9, 3.12] + python-version: [3.9, 3.13] env: OS: ${{ matrix.os }} diff --git a/.github/workflows/test_pytest.yaml b/.github/workflows/test_pytest.yaml index fb12086cc..64f5cd82c 100644 --- a/.github/workflows/test_pytest.yaml +++ b/.github/workflows/test_pytest.yaml @@ -18,8 +18,8 @@ jobs: runs-on: ${{ matrix.os }} strategy: matrix: - os: [ubuntu-latest, macos-latest] - python-version: [3.9, 3.12] + os: [ubuntu-latest, macos-latest, windows-latest] + python-version: [3.9, 3.13] env: OS: ${{ matrix.os }} PYTHON: ${{ matrix.python-version }}