Skip to content

Commit

Permalink
Fix venv commands
Browse files Browse the repository at this point in the history
  • Loading branch information
ZEBAS204 authored Dec 16, 2024
1 parent 69c0e45 commit 91ca97f
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -36,11 +36,11 @@ jobs:
shell: bash

# Use virtual environment
- name: Install Dependencies
- name: Use Virtual Environment
run: |
python -m venv venv
source venv/bin/activate
shell: bash -c
${{ matrix.os == 'windows-latest' && '.\\venv\\Scripts\\activate' || 'source venv/bin/activate' }}
pip install --upgrade pip
shell: ${{ matrix.os == 'windows-latest' && 'cmd' || 'bash' }}

# Install dependencies
- name: Install Dependencies
Expand Down

0 comments on commit 91ca97f

Please sign in to comment.