Skip to content

Commit

Permalink
Add testing on python 3.11
Browse files Browse the repository at this point in the history
  • Loading branch information
nikolas authored Jun 22, 2023
1 parent 5a2f806 commit bf77971
Showing 1 changed file with 5 additions and 3 deletions.
8 changes: 5 additions & 3 deletions .github/workflows/build-and-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ jobs:
runs-on: ubuntu-20.04
strategy:
matrix:
python-version: [3.8]
python-version: ["3.8", "3.11"]
node-version: [18.x]
services:
postgres:
Expand All @@ -23,8 +23,10 @@ jobs:
- 5432:5432
steps:
- uses: actions/checkout@v3
- name: install memcached headers
run: sudo apt install -y libmemcached-dev
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}
- name: Build with Makefile
run: make
- name: Run eslint
Expand Down

0 comments on commit bf77971

Please sign in to comment.