Skip to content

Commit

Permalink
ci: run lint separately
Browse files Browse the repository at this point in the history
  • Loading branch information
maartenbreddels committed May 17, 2021
1 parent eb24f2b commit 8ef8989
Showing 1 changed file with 10 additions and 3 deletions.
13 changes: 10 additions & 3 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,16 @@ defaults:
shell: bash -l {0}

jobs:
lint:
runs-on: ubuntu-latest
steps:

- name: Checkout
uses: actions/checkout@v2

- name: Python PEP8 check
run: flake8 ipyvolume

build:
runs-on: ubuntu-latest
steps:
Expand Down Expand Up @@ -51,9 +61,6 @@ jobs:
- name: Validate the labextension
run: jupyter labextension list 2>&1 | grep ipyvolume

- name: Python PEP8 check
run: flake8 ipyvolume

# - name: JavaScript prettyfier
# run: |
# yarn install
Expand Down

0 comments on commit 8ef8989

Please sign in to comment.