Fixed Redis error in the smoke tests: "Possible SECURITY ATTACK detected" #414
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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@v4 | |
- name: Build Celery Worker | |
run: cd src/pytest_celery/vendors/worker && docker build -t pytest-celery-worker . |