Skip to content

Commit

Permalink
ci: fix workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
kod-kristoff committed Apr 29, 2024
1 parent f611731 commit 6a06481
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,11 @@ jobs:
id: setup-python
with:
python-version: ${{ matrix.python-version }}


- name: Install libmemcached
if: matrix.python-version == '3.12'
run: apt install libmemcached-dev

- name: Load cached venv
id: cached-venv
uses: actions/cache@v4
Expand All @@ -62,10 +66,6 @@ jobs:
if: steps.cached-venv.outputs.cache-hit != 'true'
run: make install-dev

- name: Install libmemcached
if: matrix.python-version == '3.12'
run: apt install libmemcached-dev

- name: Run tests for coverage
run: make test-w-coverage cov_report=xml

Expand Down

0 comments on commit 6a06481

Please sign in to comment.