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.

(cherry picked from commit 7826a64)
  • Loading branch information
Corey Bryant committed Dec 12, 2023
1 parent f987b1b commit b5c03ec
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 b5c03ec

Please sign in to comment.