switching to environment secrets.. issue is with repo secrets #83
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Run Smoke Test | |
on: | |
workflow_call: | |
workflow_dispatch: | |
pull_request: | |
types: [opened, reopened] | |
branches: | |
- "main" | |
pull_request_review: | |
types: [submitted] | |
push: | |
paths: | |
- ".github/workflows/run_smoke_test.yml" | |
- ".github/actions/setup-dependencies-windows/action.yml" | |
- ".github/actions/setup-dependencies-macos/action.yml" | |
branches: | |
- "main" | |
- "*smoke*" | |
#env: | |
# GWS_SUBJECT_EMAIL: ${{ secrets.GWS_SUBJECT_EMAIL }} | |
# GWS_GITHUB_AUTOMATION_CREDS: ${{ secrets.GWS_GITHUB_AUTOMATION_CREDS }} | |
jobs: | |
smoke-test: | |
strategy: | |
fail-fast: false | |
matrix: | |
os: [windows-latest, macos-latest] | |
python-version: [3.12] | |
runs-on: ${{ matrix.os }} | |
environment: Development | |
steps: | |
- name: Checkout Repository | |
uses: actions/checkout@v4 | |
- name: Setup Python | |
uses: ./.github/actions/setup-python | |
with: | |
python-version: ${{ matrix.python-version }} | |
cache-dependency-path: "requirements.txt" | |
- name: Setup Dependencies (Windows) | |
if: ${{ matrix.os == 'windows-latest' }} | |
uses: ./.github/actions/setup-dependencies-windows | |
with: | |
operating-system: "windows" | |
opa-version: "0.60.0" | |
credentials: ${{ secrets.GWS_GITHUB_AUTOMATION_CREDS }} | |
- name: Setup Dependencies (macOS) | |
if: ${{ matrix.os == 'macos-latest' }} | |
uses: ./.github/actions/setup-dependencies-macos | |
with: | |
operating-system: "macos" | |
opa-version: "0.60.0" | |
credentials: ${{ secrets.GWS_GITHUB_AUTOMATION_CREDS }} | |
- name: Execute ScubaGoggles and check for correct output | |
run: | | |
echo "run scubagoggles" | |
ls | |
pytest -s ./Testing/Functional/SmokeTests/ --subjectemail="${{ secrets.GWS_SUBJECT_EMAIL }}" |