-
-
Notifications
You must be signed in to change notification settings - Fork 73
41 lines (39 loc) · 971 Bytes
/
integration_test.yml
File metadata and controls
41 lines (39 loc) · 971 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
30
31
32
33
34
35
36
37
38
39
40
41
name: Lila integration test
on:
push:
branches: ["master"]
paths:
- ".github/workflows/integration_test.yml"
- "integration/**"
- "**.py"
- "uv.lock"
- "pyproject.toml"
pull_request:
paths:
- ".github/workflows/integration_test.yml"
- "integration/**"
- "**.py"
- "uv.lock"
- "pyproject.toml"
jobs:
lila:
runs-on: ubuntu-24.04
strategy:
matrix:
python-version: ["3.9", "3.10", "3.11", "3.12", "3.13"]
container: ubuntu-latest
services:
bdit_lila:
image: ghcr.io/lichess-org/lila-docker:main
options: --restart=always
steps:
- uses: actions/checkout@v4
- name: Install uv
uses: astral-sh/setup-uv@v6
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: make setup
- name: Run integration tests
run: |
./integration/run-tests.sh