-
Notifications
You must be signed in to change notification settings - Fork 0
38 lines (37 loc) · 999 Bytes
/
integration_tests.yml
File metadata and controls
38 lines (37 loc) · 999 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
name: Integration Tests
on:
push:
branches:
- main
jobs:
integration-tests:
runs-on: ubuntu-latest
services:
redis:
image: redis
options: >-
--health-cmd "redis-cli ping"
--health-interval 10s
--health-timeout 5s
--health-retries 5
ports:
- 6379:6379
steps:
- uses: actions/checkout@v6
- name: Set up Python
uses: actions/setup-python@v6
with:
python-version: "3.13"
- uses: astral-sh/setup-uv@v7
with:
enable-cache: true
- name: Install project
run: |
uv sync --frozen
uv pip install celery"${{ matrix.celery-version }}"
- name: Run tests
run: uv run --no-sync pytest integration_tests -vs
env:
TASKBADGER_ORG: ${{ vars.TASKBADGER_ORG }}
TASKBADGER_PROJECT: ${{ vars.TASKBADGER_PROJECT }}
TASKBADGER_API_KEY: ${{ secrets.TASKBADGER_API_KEY }}