-
Notifications
You must be signed in to change notification settings - Fork 7
81 lines (69 loc) · 1.78 KB
/
tests.yml
File metadata and controls
81 lines (69 loc) · 1.78 KB
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
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
name: tests
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
jobs:
test-lib:
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
include:
- python: "3.10"
env: py310-lg100
- python: "3.10"
env: py310-lg105
- python: "3.10"
env: py310-lg108
- python: "3.11"
env: py311-lg100
- python: "3.11"
env: py311-lg105
- python: "3.11"
env: py311-lg108
- python: "3.12"
env: py312-lg100
- python: "3.12"
env: py312-lg105
- python: "3.12"
env: py312-lg108
- python: "3.13"
env: py313-lg100
- python: "3.13"
env: py313-lg105
- python: "3.13"
env: py313-lg108
- python: "3.14"
env: py314-lg100
- python: "3.14"
env: py314-lg105
- python: "3.14"
env: py314-lg108
steps:
- uses: actions/checkout@v4
- name: Set up Python ${{ matrix.python }}
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python }}
- name: Install uv
uses: astral-sh/setup-uv@v5
- name: Install tox
run: uv tool install tox --with tox-uv
- name: Run tests
run: tox -e ${{ matrix.env }}
test-web:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Set up Node.js
uses: actions/setup-node@v4
with:
node-version: lts/*
- name: Install dependencies
working-directory: langgraphics-web
run: npm install
- name: Run tests
working-directory: langgraphics-web
run: npm test