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

Another try to fix testing workflow.

parent 61a3b75b
Branches
No related tags found
No related merge requests found
...@@ -18,23 +18,25 @@ jobs: ...@@ -18,23 +18,25 @@ jobs:
strategy: strategy:
matrix: matrix:
os: os:
- ubuntu - ubuntu-latest
config: config:
#- [ ["2.7"], "py27"] #- [ "2.7", "py27"]
#- [ ["3.5"], "py35"] #- [ "3.5", "py35"]
#- [ ["3.6"], "py36"] #- [ "3.6", "py36"]
#- [ ["3.7"], "py37"] #- [ "3.7", "py37"]
#- [ ["3.8"], "py38"] #- [ "3.8", "py38"]
- [ ["2.7", "3.9"], "lint,clean,py27,py39,report"] - [ "3.9", "lint,clean,py27,py39,report"]
#- [ ["pypy-2.7"], "pypy"] #- [ "pypy-2.7", "pypy"]
#- [ ["pypy-3.7"], "pypy3"] #- [ "pypy-3.7", "pypy3"]
runs-on: ubuntu-latest runs-on: ${{ matrix.os }}
steps: steps:
- uses: actions/checkout@v4 - uses: actions/checkout@v4
- name: Set up Python ${{ matrix.config[0] }} - name: Set up Python ${{ matrix.config[0] }}
uses: actions/setup-python@v5 uses: actions/setup-python@v5
with: with:
python-version: ${{ matrix.config[0] }} python-version: |
"2.7"
${{ matrix.config[0] }}
- name: Install dependencies - name: Install dependencies
run: | run: |
python -m pip install --upgrade pip python -m pip install --upgrade pip
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment