Skip to content

Commit

Permalink
chore(ci): Add explicit proxy build step
Browse files Browse the repository at this point in the history
  • Loading branch information
achimnol committed Feb 18, 2024
1 parent d0378db commit f66739e
Showing 1 changed file with 11 additions and 1 deletion.
12 changes: 11 additions & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,12 @@ jobs:
- "3.11"
- "3.12"
steps:
- uses: actions/checkout@v4
- name: Checkout the source
uses: actions/checkout@v4
- name: Set up Go
uses: actions/setup-go@v4
with:
go-version: "^1.20.0"
- name: Set up Python
uses: actions/setup-python@v5
with:
Expand All @@ -24,8 +29,13 @@ jobs:
setup.cfg
- name: Install dependencies
run: |
docker pull redis:7-alpine
python -m pip install -U pip setuptools
python -m pip install -U -e '.[test]'
- name: Build the proxy
run: |
cd src/qedis-proxy
go build
- name: Test with pytest
timeout-minutes: 30
run: |
Expand Down

0 comments on commit f66739e

Please sign in to comment.