-
Notifications
You must be signed in to change notification settings - Fork 8
29 lines (27 loc) · 720 Bytes
/
Copy pathci.yml
File metadata and controls
29 lines (27 loc) · 720 Bytes
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
name: CI
on:
push:
branches: [main]
pull_request:
jobs:
test:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ["3.11", "3.12"]
steps:
- uses: actions/checkout@v4
- uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
- name: Install
# --no-deps: the pure modules + mocked smoke tests don't need the heavy
# upstreams (local-deep-research / cloakbrowser / Chromium) at CI time.
run: |
python -m pip install --upgrade pip
pip install pytest ruff
pip install -e . --no-deps
- name: Lint
run: ruff check .
- name: Test
run: pytest