Skip to content

Commit 9d0b025

Browse files
committed
Merge branch 'refs/heads/main' into socket-io
# Conflicts: # poetry.lock # pyproject.toml
2 parents 145edfb + b55f44e commit 9d0b025

4 files changed

Lines changed: 337 additions & 548 deletions

File tree

.github/workflows/main.yml

Lines changed: 9 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
name: Main
2+
23
on:
34
push:
45
branches: [ main ]
@@ -7,14 +8,19 @@ jobs:
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 }}

.github/workflows/pr.yml

Lines changed: 9 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ name: Pull Request
22

33
on:
44
pull_request:
5-
branches: [main]
5+
branches: [ main ]
66

77
concurrency:
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 }}

0 commit comments

Comments
 (0)