diff options
author | toonn <toonn@toonn.io> | 2021-07-18 21:37:46 +0200 |
---|---|---|
committer | toonn <toonn@toonn.io> | 2021-07-20 23:20:47 +0200 |
commit | 804915f7af60f076e143219df0ec741baab3bc2a (patch) | |
tree | 963912a65f5f213c96d6b8a008892611f747b16b | |
parent | 3c1da60fc8a266a848b7c64932ef9a8eb9878245 (diff) | |
download | ranger-804915f7af60f076e143219df0ec741baab3bc2a.tar.gz |
Actions: Reduce tested versions to oldest and newest
-rw-r--r-- | .github/workflows/pylint.yml | 4 | ||||
-rw-r--r-- | .github/workflows/pypy.yml | 2 | ||||
-rw-r--r-- | .github/workflows/python.yml | 2 |
3 files changed, 4 insertions, 4 deletions
diff --git a/.github/workflows/pylint.yml b/.github/workflows/pylint.yml index f7297054..eac9aa5c 100644 --- a/.github/workflows/pylint.yml +++ b/.github/workflows/pylint.yml @@ -11,12 +11,12 @@ on: - '**.py' jobs: - test_py: + test_pylint: runs-on: ubuntu-latest strategy: max-parallel: 4 matrix: - python-version: [3.6, 3.7, 3.8, 3.9] + python-version: [3.6, 3.x] steps: - uses: actions/checkout@v2 - name: Set up Python ${{ matrix.python-version }} diff --git a/.github/workflows/pypy.yml b/.github/workflows/pypy.yml index b9b28f77..dfb04042 100644 --- a/.github/workflows/pypy.yml +++ b/.github/workflows/pypy.yml @@ -7,7 +7,7 @@ on: - '**.py' jobs: - test_py: + test_pypy: runs-on: ubuntu-latest strategy: max-parallel: 4 diff --git a/.github/workflows/python.yml b/.github/workflows/python.yml index 266c13de..b96d6812 100644 --- a/.github/workflows/python.yml +++ b/.github/workflows/python.yml @@ -16,7 +16,7 @@ jobs: strategy: max-parallel: 4 matrix: - python-version: [2.7, 3.5, 3.6, 3.7, 3.8, 3.9] + python-version: [2.7, 3.5, 3.x] env: TERM: dumb steps: |