Skip to content

Commit

Permalink
Added venv
Browse files Browse the repository at this point in the history
  • Loading branch information
RhetTbull authored Jul 6, 2024
1 parent 6981366 commit d0fa9b8
Showing 1 changed file with 5 additions and 3 deletions.
8 changes: 5 additions & 3 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,8 +9,8 @@ jobs:
strategy:
max-parallel: 4
matrix:
# os: [macos-14, ubuntu-latest]
os: [macos-14]
os: [macos-14, ubuntu-latest]
# os: [macos-14]
python-version: ['3.10', '3.11', '3.12']
steps:
- uses: actions/checkout@v4
Expand All @@ -21,7 +21,9 @@ jobs:
cache: 'pip' # caching pip dependencies
- name: Install dependencies
run: |
python -m pip install --upgrade pip
python3 -m venv venv
source venv/bin/activate
python3 -m pip install --upgrade pip
pip install -r dev_requirements.txt
pip install -r requirements.txt
- name: Install exiftool
Expand Down

0 comments on commit d0fa9b8

Please sign in to comment.