Skip to content

Commit

Permalink
move style check to separate workflow step
Browse files Browse the repository at this point in the history
  • Loading branch information
fopina committed Jun 2, 2021
1 parent 1f8066a commit 000243e
Showing 1 changed file with 13 additions and 3 deletions.
16 changes: 13 additions & 3 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,19 @@ on:
branches: [ master ]

jobs:
style:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Set up Python 3.6
uses: actions/setup-python@v2
with:
python-version: 3.6
- name: Install tox
run: pip install tox
- name: Style check
run : tox -e style

test:
runs-on: ubuntu-latest
strategy:
Expand Down Expand Up @@ -46,9 +59,6 @@ jobs:

- name: Install tox
run: pip install tox

- name: Style check
run : tox -e style
- name: Toxit
run: tox -e py-${{ matrix.database }} -v

Expand Down

0 comments on commit 000243e

Please sign in to comment.