Skip to content

Commit

Permalink
Run github func job with py38
Browse files Browse the repository at this point in the history
This avoids running with py310 which doesn't make sense for focal.
  • Loading branch information
Corey Bryant committed Dec 8, 2023
1 parent 3664d52 commit 9a31f0e
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions .github/workflows/tox.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -34,6 +34,7 @@ jobs:
strategy:
fail-fast: false
matrix:
python-version: [3.8]
juju_channel:
- 2.9/stable
bundle:
Expand All @@ -45,6 +46,10 @@ jobs:
needs: build
steps:
- uses: actions/checkout@v1
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v2
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: |
set -euxo pipefail
Expand Down

0 comments on commit 9a31f0e

Please sign in to comment.