-
Notifications
You must be signed in to change notification settings - Fork 1
65 lines (51 loc) · 1.38 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
58
59
60
61
62
63
64
65
name: chimedb_dataset-ci-build
on:
pull_request:
branches:
- master
push:
branches:
- master
jobs:
lint-code:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Set up Python 3.12
uses: actions/setup-python@v2
with:
python-version: "3.12"
- name: Install black
run: pip install black flake8
- name: Check code with black
run: |
black --check .
- name: Run flake8
# ignore: line too long, variable names, whitespace before ':', line break before
# binary operator, comment style
run: flake8 --show-source --ignore=E501,E741,E203,W503,E266 chimedb
run-tests:
strategy:
matrix:
python-version: ["3.9", "3.12"]
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v2
with:
python-version: ${{ matrix.python-version }}
- name: Install pip dependencies
run: |
pip install pytest
- name: Install chimedb_dataset
run: |
pip install .
- name: Run tests
# Set PYTHONPATH so that relative imports in click script work when pytest imports that
run: |
touch $CHIMEDB_TEST_SQLITE
pytest -sv tests/
env:
CHIMEDB_TEST_ENABLE: 1
CHIMEDB_TEST_SQLITE: test.sql