chore: basic structure for implementation of tabular containers with … #455
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Main | |
on: | |
push: | |
branches: [ main ] | |
jobs: | |
poetry-with-codecov: | |
strategy: | |
fail-fast: false | |
matrix: | |
platform: | |
- "ubuntu-latest" | |
# - "macos-latest" # Intel Macs are no longer supported by Torch | |
- "windows-latest" | |
python-version: | |
- "3.11" | |
- "3.12" | |
uses: lars-reimann/.github/.github/workflows/poetry-codecov-reusable.yml@main | |
with: | |
working-directory: . | |
platform: ${{ matrix.platform }} | |
python-version: ${{ matrix.python-version }} | |
module-name: safeds | |
coverage: ${{ matrix.platform == 'ubuntu-latest' && matrix.python-version == '3.11' }} | |
secrets: | |
CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }} |