Skip to content

Commit

Permalink
ci: add required packages (#76)
Browse files Browse the repository at this point in the history
* ci: add required packages

* ci: Use correct python version

* ci: remove Python 3.13
  • Loading branch information
hugobloem authored Aug 15, 2024
1 parent 65f3a83 commit 5e89262
Showing 1 changed file with 6 additions and 2 deletions.
8 changes: 6 additions & 2 deletions .github/workflows/test.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -14,16 +14,20 @@ jobs:
strategy:
max-parallel: 5
matrix:
python-version: ["3.11", "3.12", "3.13"]
python-version: ["3.11", "3.12"]

steps:
- name: "Install required packages"
run: |
sudo apt-get install build-essential ca-certificates libasound2-dev libssl-dev wget
- name: "Checkout the repository"
uses: actions/checkout@v4

- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: '3.11'
python-version: ${{ matrix.python-version }}

- name: "Install dependencies"
run: |
Expand Down

0 comments on commit 5e89262

Please sign in to comment.