-
-
Notifications
You must be signed in to change notification settings - Fork 18
35 lines (32 loc) · 803 Bytes
/
Copy pathdocker.yml
File metadata and controls
35 lines (32 loc) · 803 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
name: Docker
on:
pull_request:
branches: [ 'main']
paths:
- '.github/workflows/docker.yml'
- 'src/pytest_celery/vendors/worker/**'
- "**.py"
- "**.txt"
- "**.toml"
- "tox.ini"
- 'Dockerfile'
- "poetry.lock"
push:
branches: [ 'main']
paths:
- '.github/workflows/docker.yml'
- 'src/pytest_celery/vendors/worker/**'
- "**.py"
- "**.txt"
- "**.toml"
- "tox.ini"
- 'Dockerfile'
- "poetry.lock"
jobs:
build-worker:
runs-on: blacksmith-4vcpu-ubuntu-2204
timeout-minutes: 5
steps:
- uses: actions/checkout@v7
- name: Build Celery Worker
run: cd src/pytest_celery/vendors/worker && docker build -t pytest-celery-worker .