feat: handle list of filenames in absolute_path
and file_mtime
#253
Workflow file for this run
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: Pull Request | |
on: | |
pull_request: | |
branches: [main] | |
concurrency: | |
group: ${{ github.head_ref }}-${{ github.workflow }} | |
cancel-in-progress: true | |
jobs: | |
poetry-with-codecov: | |
strategy: | |
matrix: | |
python-version: | |
- '3.11' | |
- '3.12' | |
uses: lars-reimann/.github/.github/workflows/poetry-codecov-reusable.yml@main | |
with: | |
working-directory: . | |
python-version: ${{ matrix.python-version }} | |
module-name: safeds_runner | |
coverage: ${{ matrix.python-version == '3.11' }} | |
secrets: | |
CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }} |