-
Notifications
You must be signed in to change notification settings - Fork 364
57 lines (46 loc) · 1.45 KB
/
main.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
name: Tests
on:
push:
branches:
- master
pull_request:
branches:
- master
defaults:
run:
shell: bash -l {0}
jobs:
run:
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
os: [ubuntu-latest, macos-latest]
python-version: [3.8]
steps:
- uses: actions/checkout@v2
- name: Setup conda
uses: mamba-org/setup-micromamba@v1
with:
environment-file: environment-dev.yml
condarc: |
dependencies:
- python==${{ matrix.python-version }}
- name: Install ipyleaflet
run: pip install python/jupyter_leaflet python/ipyleaflet_core python/ipyleaflet --no-deps
- name: Check installation files
run: |
test -d $CONDA_PREFIX/share/jupyter/nbextensions/jupyter-leaflet
test -f $CONDA_PREFIX/share/jupyter/nbextensions/jupyter-leaflet/extension.js
test -f $CONDA_PREFIX/share/jupyter/nbextensions/jupyter-leaflet/index.js
test -f $CONDA_PREFIX/share/jupyter/nbextensions/jupyter-leaflet/index.js
test -f $CONDA_PREFIX/share/jupyter/labextensions/jupyter-leaflet/package.json
- name: Python Linters
run: ruff check --output-format=github .
- name: JS Linters
run: |
yarn install
yarn run lint:check
working-directory: python/jupyter_leaflet
- name: Import check
run: python -c 'import ipyleaflet'