-
Notifications
You must be signed in to change notification settings - Fork 616
41 lines (38 loc) · 963 Bytes
/
full-tests.yml
File metadata and controls
41 lines (38 loc) · 963 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
name: Full Tests
on:
pull_request:
types: [review_requested, ready_for_review]
paths-ignore:
- "**/*.md"
- ".github/**"
push:
branches:
- main
- develop
tags:
- "v*"
workflow_dispatch:
jobs:
full-tests-matrix:
strategy:
matrix:
os: [Windows, macOS] # exclude Ubuntu as it is available in pr-tests
python-version: ["3.10", "3.11", "3.12", "3.13"]
include:
- 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 }}
full-tests-summary:
name: Full Tests Summary
needs: full-tests-matrix
runs-on: ubuntu-latest
steps:
- name: Verify Full Tests Completion
run: echo "Full tests completed. All matrix jobs passed."