Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
11 changes: 5 additions & 6 deletions .github/workflows/run-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,13 +10,12 @@ jobs:
- name: Checkout code
uses: actions/checkout@v4

- name: Install packages

- name: Install uv
run: |
python -m venv venv
. venv/bin/activate
pip install -e .[dev]
curl -LsSf https://astral.sh/uv/install.sh | sh


- name: Run tests
run: |
. venv/bin/activate
pytest
uv run --all-extras pytest
15 changes: 13 additions & 2 deletions config.yaml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
version: 1
packages:
docker:
# available types: docker, debian
# available types: docker, debian, homebrew
package_type: docker
# repo where the workflow is started
repo: redis/docker-library-redis
Expand Down Expand Up @@ -33,11 +33,22 @@ packages:
publish_timeout_minutes: 10
publish_inputs: {}
rpm:
package_type: debian
package_type: rpm
repo: redis/redis-rpm
build_workflow: release_build_and_test.yml
build_inputs: {}
publish_internal_release: yes
publish_workflow: release_publish.yml
publish_timeout_minutes: 10
publish_inputs: {}
homebrew:
package_type: homebrew
repo: redis/homebrew-redis
# homebrew has one fixed release branch: main
ref: main
build_workflow: release_build_and_test.yml
build_inputs: {}
publish_internal_release: yes
publish_workflow: release_publish.yml
publish_timeout_minutes: 10
publish_inputs: {}
Loading