Skip to content

Commit

Permalink
github: add venv caching
Browse files Browse the repository at this point in the history
  • Loading branch information
aconchillo committed Mar 19, 2024
1 parent 16257f8 commit 593513c
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions .github/workflows/tests.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -22,9 +22,15 @@ jobs:
steps:
- uses: actions/checkout@v4
- name: Set up Python
id: setup_python
uses: actions/setup-python@v4
with:
python-version: '3.10'
- name: Cache virtual environment
uses: actions/cache@v3
with:
key: venv-${{ runner.os }}-${{ steps.setup_python.outputs.python-version}}
path: .venv
- name: Install system packages
run: sudo apt-get install -y portaudio19-dev
- name: Install basic dependencies
Expand Down

0 comments on commit 593513c

Please sign in to comment.