Skip to content

Commit

Permalink
readd shell param
Browse files Browse the repository at this point in the history
  • Loading branch information
mitchelbaker-cisa committed Jul 26, 2024
1 parent d127944 commit 66f9ea5
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 6 deletions.
3 changes: 3 additions & 0 deletions .github/actions/setup-macos-dependencies/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,12 +11,14 @@ runs:
using: "composite"
steps:
- name: Setup virtualenv
shell: bash
run: |
pip install virtualenv
virtualenv -p python .venv
source .venv/bin/activate
- name: Install dependencies
shell: bash
run: |
python -m pip install .
pip install -r requirements.txt
Expand All @@ -25,4 +27,5 @@ runs:
pip install numpy==1.26.4
- name: Download OPA executable
shell: bash
run: python download_opa.py -v ${{ inputs.opa-version }} -os ${{ inputs.operating-system }}
3 changes: 3 additions & 0 deletions .github/actions/setup-windows-dependencies/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,12 +11,14 @@ runs:
using: "composite"
steps:
- name: Setup virtualenv
shell: powershell
run: |
pip install virtualenv
python -m venv .venv
.venv\Scripts\activate
- name: Install dependencies
shell: powershell
run: |
python -m pip install .
pip install -r requirements.txt
Expand All @@ -25,4 +27,5 @@ runs:
pip install numpy==1.26.4
- name: Download OPA executable
shell: powershell
run: python download_opa.py -v ${{ inputs.opa-version }} -os ${{ inputs.operating-system }}
6 changes: 0 additions & 6 deletions .github/workflows/run_smoke_test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,9 +23,6 @@ jobs:
smoke-test-windows:
name: Smoke Test for Windows
runs-on: windows-latest
defaults:
run:
shell: powershell
steps:
- name: Checkout Repository
uses: actions/checkout@v4
Expand All @@ -51,9 +48,6 @@ jobs:
smoke-test-macos:
name: Smoke Test for MacOS
runs-on: macos-latest
defaults:
run:
shell: bash
needs: smoke-test-windows
steps:
- name: Checkout Repository
Expand Down

0 comments on commit 66f9ea5

Please sign in to comment.