chore(python-deps): update dependency tomli to v2.0.1 for the create_unique_testpypi_version group(s) #155
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: Test code | |
on: | |
push: | |
branches: [main] | |
merge_group: | |
pull_request: | |
branches: [main] | |
# Cancel running jobs for the same workflow and branch. | |
concurrency: | |
group: ${{ github.workflow }}-${{ github.ref }} | |
cancel-in-progress: ${{ github.ref != 'refs/heads/main' }} | |
jobs: | |
test-code: | |
uses: ./.github/workflows/_reusable-test-code.yml | |
with: | |
repo-name: tektronix/python-package-ci-cd | |
operating-systems-array: '["ubuntu", "windows"]' # this needs to match the operating-systems-array in the publish-test-results.yml file | |
python-versions-array: '["3.12"]' # this needs to match the [tool.poetry.dependencies.python] version in the pyproject.toml file | |
upload-to-codecov: true | |
secrets: | |
codecov-token: ${{ secrets.CODECOV_TOKEN }} |