We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3c7d326 commit 1f5fbf3Copy full SHA for 1f5fbf3
.github/workflows/build.yml
@@ -26,8 +26,6 @@ jobs:
26
27
- name: Build the extension
28
run: |
29
- jlpm
30
- jlpm lint:check
31
python -m pip install .
32
33
jupyter labextension list 2>&1 | grep -ie "jupyterlab-filesystem-access.*OK"
.github/workflows/lint.yml
@@ -0,0 +1,27 @@
1
+name: Lint
2
+
3
+on:
4
+ push:
5
+ branches:
6
+ - main
7
+ pull_request:
8
+ branches: '*'
9
10
+defaults:
11
+ run:
12
+ shell: bash -l {0}
13
14
+jobs:
15
+ build:
16
+ runs-on: ubuntu-latest
17
+ steps:
18
+ - name: Checkout
19
+ uses: actions/checkout@v2
20
21
+ - name: Install Conda environment from environment.yml
22
+ uses: mamba-org/provision-with-micromamba@main
23
24
+ - name: Lint
25
+ run: |
+ jlpm
+ jlpm lint:check
0 commit comments