Skip to content

Commit

Permalink
And another try...
Browse files Browse the repository at this point in the history
apparantly githib actions do not like double quotes - although they are
part of YAML standard.
  • Loading branch information
ulif committed Jul 25, 2024
1 parent e4f4b8b commit a48992a
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,18 +21,18 @@ jobs:
strategy:
matrix:
os:
- ["ubuntu", "ubuntu-latest"]
- ['ubuntu', 'ubuntu-latest']
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v4
- name: Set up Python (3.9)
uses: actions/setup-python@v5
with:
python-version: "3.9"
python-version: '3.9'
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install tox
- name: Test with tox
run: |
tox run -e "lint,py39"
tox run -e 'lint,py39'

0 comments on commit a48992a

Please sign in to comment.