Skip to content
Snippets Groups Projects
Unverified Commit a48992ad authored by ulif's avatar ulif
Browse files

And another try...

apparantly githib actions do not like double quotes - although they are
part of YAML standard.
parent e4f4b8bc
No related branches found
No related tags found
No related merge requests found
...@@ -21,18 +21,18 @@ jobs: ...@@ -21,18 +21,18 @@ jobs:
strategy: strategy:
matrix: matrix:
os: os:
- ["ubuntu", "ubuntu-latest"] - ['ubuntu', 'ubuntu-latest']
runs-on: ${{ matrix.os }} runs-on: ${{ matrix.os }}
steps: steps:
- uses: actions/checkout@v4 - uses: actions/checkout@v4
- name: Set up Python (3.9) - name: Set up Python (3.9)
uses: actions/setup-python@v5 uses: actions/setup-python@v5
with: with:
python-version: "3.9" python-version: '3.9'
- name: Install dependencies - name: Install dependencies
run: | run: |
python -m pip install --upgrade pip python -m pip install --upgrade pip
pip install tox pip install tox
- name: Test with tox - name: Test with tox
run: | run: |
tox run -e "lint,py39" tox run -e 'lint,py39'
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment