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 c51328f
Showing 1 changed file with 20 additions and 3 deletions.
23 changes: 20 additions & 3 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,26 @@ defaults:
shell: bash -l {0}

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

- name: Checkout
uses: actions/checkout@v2

- name: Setup conda
uses: conda-incubator/setup-miniconda@v2
with:
activate-environment: ipyvolume-test
environment-file: environment-test.yml
python-version: ${{ matrix.python-version }}
mamba-version: "*"
auto-activate-base: false
channels: conda-forge

- name: Python PEP8 check
run: flake8 ipyvolume

build:
runs-on: ubuntu-latest
steps:
Expand Down Expand Up @@ -51,9 +71,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 c51328f

Please sign in to comment.