Skip to content

Commit

Permalink
#1 - Implement MQTT client library (8)
Browse files Browse the repository at this point in the history
Debug CI
  • Loading branch information
dostuffthatmatters committed Sep 11, 2023
1 parent 72b323d commit 290c9bd
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/test-client.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
python_version: [3.8, 3.9, 3.10, 3.11]
python_version: ["3.8"] #, "3.9", "3.10", "3.11"]
defaults:
run:
working-directory: client
Expand All @@ -40,8 +40,8 @@ jobs:
id: cached-venv
uses: actions/cache@v3
with:
path: .venv
key: venv-${{ runner.os }}-${{ matrix.python_version }}-${{ hashFiles('poetry.lock') }}
path: client/.venv
key: venv-${{ runner.os }}-${{ matrix.python_version }}-${{ hashFiles('client/poetry.lock') }}

# install poetry if venv not in cache
- name: Install Poetry
Expand Down

0 comments on commit 290c9bd

Please sign in to comment.