diff options
author | toonn <toonn@toonn.io> | 2021-07-18 21:06:19 +0200 |
---|---|---|
committer | toonn <toonn@toonn.io> | 2021-07-20 23:20:47 +0200 |
commit | c83be19bf6e2bc2038dfc48f705e41075a72f009 (patch) | |
tree | 1bf43a6c52bf22a13b18d25bac025cee1b54bb0c /.github/workflows | |
parent | 2767943a24b3c1df541e62597e7f33ca20c9686c (diff) | |
download | ranger-c83be19bf6e2bc2038dfc48f705e41075a72f009.tar.gz |
Actions: Drop Pypy from pylint and add pylint to Pypy
Diffstat (limited to '.github/workflows')
-rw-r--r-- | .github/workflows/pylint.yml | 2 | ||||
-rw-r--r-- | .github/workflows/pypy.yml | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/.github/workflows/pylint.yml b/.github/workflows/pylint.yml index c922293b..a614cad4 100644 --- a/.github/workflows/pylint.yml +++ b/.github/workflows/pylint.yml @@ -16,7 +16,7 @@ jobs: strategy: max-parallel: 4 matrix: - python-version: [pypy3, 3.6, 3.7, 3.8, 3.9] + python-version: [3.6, 3.7, 3.8, 3.9] 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 788f4cb0..0fa60042 100644 --- a/.github/workflows/pypy.yml +++ b/.github/workflows/pypy.yml @@ -31,4 +31,4 @@ jobs: pip install -r requirements.txt - name: Pypy flake8 and test run: | - make test_flake8 test_pytest test_doctest test_other + make test_pylint test_flake8 test_pytest test_doctest test_other |