File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 11name : Main
2+
23on :
34 push :
45 branches : [ main ]
78 poetry-with-codecov :
89 strategy :
910 matrix :
11+ platform :
12+ - " ubuntu-latest"
13+ - " macos-latest"
14+ - " windows-latest"
1015 python-version :
11- - ' 3.11'
12- - ' 3.12'
16+ - " 3.11"
17+ - " 3.12"
1318 uses : lars-reimann/.github/.github/workflows/poetry-codecov-reusable.yml@main
1419 with :
1520 working-directory : .
21+ platform : ${{ matrix.platform }}
1622 python-version : ${{ matrix.python-version }}
1723 module-name : safeds_runner
18- coverage : ${{ matrix.python-version == '3.11' }}
24+ coverage : ${{ matrix.platform == 'ubuntu-latest' && matrix. python-version == '3.11' }}
1925 secrets :
2026 CODECOV_TOKEN : ${{ secrets.CODECOV_TOKEN }}
Original file line number Diff line number Diff line change @@ -2,7 +2,7 @@ name: Pull Request
22
33on :
44 pull_request :
5- branches : [main]
5+ branches : [ main ]
66
77concurrency :
88 group : ${{ github.head_ref }}-${{ github.workflow }}
@@ -12,14 +12,19 @@ jobs:
1212 poetry-with-codecov :
1313 strategy :
1414 matrix :
15+ platform :
16+ - " ubuntu-latest"
17+ - " macos-latest"
18+ - " windows-latest"
1519 python-version :
16- - ' 3.11'
17- - ' 3.12'
20+ - " 3.11"
21+ - " 3.12"
1822 uses : lars-reimann/.github/.github/workflows/poetry-codecov-reusable.yml@main
1923 with :
2024 working-directory : .
25+ platform : ${{ matrix.platform }}
2126 python-version : ${{ matrix.python-version }}
2227 module-name : safeds_runner
23- coverage : ${{ matrix.python-version == '3.11' }}
28+ coverage : ${{ matrix.platform == 'ubuntu-latest' && matrix. python-version == '3.11' }}
2429 secrets :
2530 CODECOV_TOKEN : ${{ secrets.CODECOV_TOKEN }}
You can’t perform that action at this time.
0 commit comments