Skip to content

Commit

Permalink
Fix a step of a workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
thombashi committed Nov 6, 2021
1 parent b1d6470 commit 793cb2d
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/lint_and_test.yml
Expand Up @@ -58,11 +58,11 @@ jobs:
strategy:
fail-fast: false
matrix:
python-version: ['3.6', '3.7', '3.8', '3.9', '3.10', pypy3]
python-version: ["3.6", "3.7", "3.8", "3.9", "3.10", pypy3]
os: [ubuntu-latest, macos-latest, windows-latest]
exclude:
- os: windows-latest
python-version: '3.6'
python-version: "3.6"

steps:
- uses: actions/checkout@v2
Expand Down Expand Up @@ -99,7 +99,7 @@ jobs:
- name: Upload coverage report
run: |
python -m pip install --upgrade --disable-pip-version-check coveralls
python -m pip install --upgrade --disable-pip-version-check coveralls tomli
coveralls --service=github
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
Expand Down

0 comments on commit 793cb2d

Please sign in to comment.