Add config file support for existing parameters (#413) #221
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" | |
push: | |
# Uncomment when testing locally | |
#paths: | |
# - ".github/workflows/run_smoke_test.yml" | |
# - ".github/actions/setup-dependencies-windows/action.yml" | |
# - ".github/actions/setup-dependencies-macos/action.yml" | |
branches: | |
- "main" | |
jobs: | |
smoke-test: | |
strategy: | |
fail-fast: false | |
matrix: | |
os: [windows-latest, macos-latest] | |
# See https://raw.githubusercontent.com/actions/python-versions/main/versions-manifest.json, | |
# ctrl + f and search "python-3.<minor>.<patch>-<darwin-arm64/win32/linux>" for supported versions | |
python-version: ["3.9", "3.12"] # "3.8 fails with numpy uninstall" | |
runs-on: ${{ matrix.os }} | |
environment: Development | |
steps: | |
- name: Checkout Repository | |
uses: actions/checkout@v4 | |
- name: Setup Python v${{ matrix.python-version }} | |
uses: actions/setup-python@v5 | |
with: | |
python-version: ${{ matrix.python-version }} | |
cache: "pip" | |
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" | |
python-version: ${{ matrix.python-version }} | |
- name: Setup Dependencies (macOS) | |
if: ${{ matrix.os == 'macos-latest' }} | |
uses: ./.github/actions/setup-dependencies-macos | |
with: | |
operating-system: "macos" | |
opa-version: "0.60.0" | |
python-version: ${{ matrix.python-version }} | |
- name: Setup credentials for service account | |
id: create-json | |
uses: jsdaniell/create-json@v1.2.3 | |
with: | |
name: "credentials.json" | |
json: ${{ secrets.GWS_GITHUB_AUTOMATION_CREDS }} | |
- name: Run ScubaGoggles and check for correct output | |
run: pytest -s -vvv ./Testing/Functional/SmokeTests/ --subjectemail="${{ secrets.GWS_SUBJECT_EMAIL }}" --domain="${{ secrets.GWS_DOMAIN }}" |