-
Notifications
You must be signed in to change notification settings - Fork 65
55 lines (40 loc) · 1.09 KB
/
test.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
name: Test
on:
push:
branches:
- master
pull_request:
branches:
- master
jobs:
test:
runs-on: ubuntu-latest
strategy:
matrix:
python: ["3.8", "3.9", "3.10", "3.11"]
name: Python ${{ matrix.python }}
steps:
- uses: actions/checkout@v4
- name: Set up Python ${{ matrix.python }}
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python }}
- name: Setup poetry
uses: abatilo/[email protected]
with:
poetry-version: 1.8.3
- name: Configure poetry
run: poetry config virtualenvs.in-project true
- name: Install Python dependencies
run: poetry install
- run: poetry run jupyter nbextension install vega --py --sys-prefix
- name: Setup Node
uses: actions/setup-node@v4
- name: Install Node dependencies
run: yarn --frozen-lockfile
- name: Lint TypeScript
run: yarn lint
- name: Build JavaScript
run: yarn build
- name: Run pytest
run: poetry run pytest vega