chore(python-deps): update dependency pyright to v1.1.391 for dev (#282) #863
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", "macos"]' # this needs to match the operating-systems-array in the publish-test-results.yml file | |
python-versions-array: '["pyproject.toml"]' | |
upload-to-codecov: true | |
secrets: | |
codecov-token: ${{ secrets.CODECOV_TOKEN }} |