Skip to content

Commit

Permalink
Default to bash on all environments
Browse files Browse the repository at this point in the history
  • Loading branch information
glopesdev committed Oct 30, 2024
1 parent 3f7cb51 commit 72ba2e3
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ jobs:
fail-fast: false
defaults:
run:
shell: ${{ matrix.os == 'windows-latest' && 'cmd' || 'bash' }} -l {0} # Adjust shell based on OS
shell: bash
steps:
- name: Checkout
uses: actions/checkout@v4
Expand All @@ -31,7 +31,7 @@ jobs:
- name: Create venv and install dependencies
run: |
python -m venv .venv
.venv/Scripts/activate || source .venv/bin/activate
source .venv/bin/activate
pip install -e .[dev]
- name: Activate venv for later steps
run: |
Expand Down

0 comments on commit 72ba2e3

Please sign in to comment.