Skip to content

Commit

Permalink
test matrix version
Browse files Browse the repository at this point in the history
  • Loading branch information
mitchelbaker-cisa committed Jul 30, 2024
1 parent f44b6eb commit b9d9878
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/run_smoke_test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -38,28 +38,28 @@ jobs:
cache-dependency-path: "requirements.txt"

- name: Setup Windows dependencies
if: ${{ matrix.os }} == "windows-latest"
if: ${{ matrix.os == "windows-latest" }}
uses: ./.github/actions/setup-windows-dependencies
with:
operating-system: "windows"
opa-version: "0.60.0"

- name: Setup macOS dependencies
if: ${{ matrix.os }} == "macos-latest"
if: ${{ matrix.os == "macos-latest" }}
uses: ./.github/actions/setup-windows-dependencies
with:
operating-system: "macos"
opa-version: "0.60.0"

- name: Execute ScubaGoggles and check for correct output
if: ${{ matrix.os }} == "windows-latest"
if: ${{ matrix.os == "windows-latest" }}
run: |
# Setup credentials for service account
Set-Content -Path credentials.json -Value $env:GWS_GITHUB_AUTOMATION_CREDS
pytest -s ./Testing/Functional/SmokeTests/ --subjectemail="$env:GWS_SUBJECT_EMAIL"
- name: Execute ScubaGoggles and check for correct output
if: ${{ matrix.os }} == "macos-latest"
if: ${{ matrix.os == "macos-latest" }}
run: |
echo "in second step"
Expand Down

0 comments on commit b9d9878

Please sign in to comment.