Skip to content

Commit

Permalink
Merge pull request #334 from MichaIng/ci
Browse files Browse the repository at this point in the history
Update test workflow
  • Loading branch information
bennuttall committed Sep 8, 2023
2 parents c9a03ff + c49f78b commit 90446fd
Show file tree
Hide file tree
Showing 3 changed files with 17 additions and 9 deletions.
16 changes: 8 additions & 8 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,27 +17,27 @@ jobs:
fail-fast: false
matrix:
include:
- os: ubuntu-18.04
- os: ubuntu-20.04
python: "3.7"
python-req: requirements_buster.txt
python-apt: 1.6.4
experimental: false
- os: ubuntu-20.04
python: "3.8"
python-req: requirements_bullseye.txt
python-apt: 2.0.0
experimental: false
- os: ubuntu-20.04
python: "3.9"
python-req: requirements_bullseye.txt
python-apt: 2.0.0
experimental: false
- os: ubuntu-22.04
python: "3.11"
python-req: requirements_bookworm.txt
python-apt: 2.3.0
experimental: true

runs-on: ${{ matrix.os }}
continue-on-error: ${{ matrix.experimental }}
steps:
- name: Install Python ${{ matrix.python }}
uses: actions/setup-python@v2
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python }}

Expand All @@ -53,7 +53,7 @@ jobs:
sudo -u postgres psql -c "create database piwheels_test" -c "\l"
- name: Checkout piwheels
uses: actions/checkout@v2
uses: actions/checkout@v4

- name: Install dependencies
run: |
Expand Down
8 changes: 8 additions & 0 deletions requirements_bookworm.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
pyzmq==24.0.1
configargparse==1.5.3
voluptuous==0.12.2
urwid==2.1.2
sqlalchemy==1.4.46
psycopg2==2.9.5
chameleon==3.8.1
python-dateutil==2.8.2
2 changes: 1 addition & 1 deletion requirements_bullseye.txt
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
pyzmq==17.1.2
pyzmq==20.0.0
configargparse==0.13.0
voluptuous==0.11.1
urwid==2.0.1
Expand Down

0 comments on commit 90446fd

Please sign in to comment.