We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 392272d commit 3593a02Copy full SHA for 3593a02
.github/workflows/docker.yml
@@ -0,0 +1,25 @@
1
+name: Docker
2
+
3
+on:
4
+ pull_request:
5
+ branches: [ 'main']
6
+ paths:
7
+ - '/src/pytest_celery/vendors/worker/**'
8
+ - '.github/workflows/docker.yml'
9
+ - 'Dockerfile'
10
+ push:
11
12
13
14
15
16
17
18
+jobs:
19
+ build-worker:
20
+ runs-on: ubuntu-latest
21
+ timeout-minutes: 5
22
+ steps:
23
+ - uses: actions/checkout@v4
24
+ - name: Build Celery Worker
25
+ run: cd src/pytest_celery/vendors/worker && docker build -t pytest-celery-worker .
0 commit comments