Apply ruff/flake8-implicit-str-concat rule ISC001 (#2049) #7
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: merge | |
on: | |
push: | |
branches: | |
- main | |
workflow_dispatch: | |
jobs: | |
tests: | |
strategy: | |
matrix: | |
# Do the ones not covered in PR workflow | |
os: [ubuntu, macos] | |
python-version: ["3.10"] # , "3.12" except PyPy | |
test-extras: [false] | |
upload-coverage: [false] | |
include: | |
- os: windows | |
python-version: "3.11" | |
test-extras: true | |
upload-coverage: true | |
- os: macos | |
python-version: "3.10" | |
test-extras: true | |
upload-coverage: false | |
- os: ubuntu | |
python-version: "pypy3.10" | |
test-extras: false | |
upload-coverage: false | |
exclude: | |
# for combo with test-extras, already includes false tests, so remove from matrix | |
- os: macos | |
python-version: "3.10" | |
test-extras: false | |
uses: ./.github/workflows/tests_wf.yml | |
with: | |
os: ${{ matrix.os }} | |
python-version: ${{ matrix.python-version }} | |
test-extras: ${{ matrix.test-extras }} | |
upload-coverage: ${{ matrix.upload-coverage }} |