Skip to content

Commit

Permalink
use actions/setup-python
Browse files Browse the repository at this point in the history
  • Loading branch information
barrettj12 committed Oct 17, 2023
1 parent 6789dee commit a471559
Showing 1 changed file with 6 additions and 3 deletions.
9 changes: 6 additions & 3 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,10 +14,13 @@ jobs:
- name: Checkout code
uses: actions/checkout@v4

- name: Set up virtualenv
- name: Set up Python
uses: actions/setup-python@v4
with:
python-version: 3.8

- name: Install dependencies for testing
run: |
virtualenv -p python3 venv
source venv/bin/activate
pip install -r requirements-dev.txt
- name: Run tests
Expand Down

0 comments on commit a471559

Please sign in to comment.