Skip to content

Commit

Permalink
GH actions: Moved 3.7 to unittest-only checks due to recent issues wi…
Browse files Browse the repository at this point in the history
…th flake8 on 3.7
  • Loading branch information
vlasovskikh committed Nov 3, 2022
1 parent 91b97c7 commit a80e76d
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions .github/workflows/python-checks.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,16 +9,17 @@ on:
- master

jobs:
py2-checks:
unittest-checks:
runs-on: ubuntu-latest
strategy:
matrix:
python-version:
- "2.7"
- "3.7"
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v3
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v2
uses: actions/setup-python@v3
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
Expand All @@ -29,12 +30,11 @@ jobs:
- name: Test with unittest
run: |
poetry run python -m unittest discover
py3-checks:
pre-commit-checks:
runs-on: ubuntu-latest
strategy:
matrix:
python-version:
- "3.7"
- "3.8"
- "3.9"
- "3.10"
Expand Down

0 comments on commit a80e76d

Please sign in to comment.