Skip to content

Commit

Permalink
chg: Bump playwright, add tests on python 3.13
Browse files Browse the repository at this point in the history
  • Loading branch information
Rafiot committed Oct 21, 2024
1 parent c42a58d commit bcb8266
Show file tree
Hide file tree
Showing 4 changed files with 221 additions and 181 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/mypy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ['3.8', '3.9', '3.10', '3.11', '3.12']
python-version: ['3.8', '3.9', '3.10', '3.11', '3.12', '3.13']
name: Python ${{ matrix.python-version }} sample

steps:
Expand Down
16 changes: 8 additions & 8 deletions .github/workflows/test_api.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ['3.8', '3.9', '3.10', '3.11', '3.12']
python-version: ['3.8', '3.9', '3.10', '3.11', '3.12', '3.13']
name: Python ${{ matrix.python-version }}

steps:
Expand All @@ -27,18 +27,18 @@ jobs:
python-version: ${{matrix.python-version}}
cache: 'poetry'

- name: Clone Redis
- name: Clone Valkey
uses: actions/checkout@v4
with:
repository: redis/redis
path: redis-tmp
ref: 7.2
repository: valkey-io/valkey
path: valkey-tmp
ref: 8.0

- name: Install redis
- name: Install valkey
run: |
mv redis-tmp ../redis
mv valkey-tmp ../valkey
pushd ..
pushd redis
pushd valkey
make
popd
popd
Expand Down
Loading

0 comments on commit bcb8266

Please sign in to comment.