Skip to content

Commit

Permalink
correct quotes
Browse files Browse the repository at this point in the history
  • Loading branch information
ErebusZ committed Mar 8, 2024
1 parent a9cf680 commit b78513e
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/pytest.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ jobs:
fail-fast: false
matrix:
python-version: ["3.9", "3.10", "3.11"]
os: [ubuntu-latest, windows-latest]
os: ['ubuntu-latest', 'windows-latest']

steps:
- uses: actions/checkout@v4.1.1
Expand All @@ -43,8 +43,8 @@ jobs:
run: |
set -o pipefail
pytest -m "not docker and not nats"
if: matrix.os == ubuntu-latest
if: matrix.os == 'ubuntu-latest'
- name: Running tests with pytest for ubuntu.
run: |
pytest -m "not docker and not nats"
if: matrix.os == windows-latest
if: matrix.os == 'windows-latest'

0 comments on commit b78513e

Please sign in to comment.