cleanup, add run_smoke_test workflow #1
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: Smoke Test | |
on: | |
pull_request: | |
types: [opened, reopened] | |
branches: | |
- "main" | |
pull_request_review: | |
types: [submitted] | |
push: | |
branches: | |
- "main" | |
- "*smoke*" | |
jobs: | |
smoke-test-windows: | |
name: Smoke Test for Windows OS | |
runs-on: windows-latest | |
env: | |
SCUBA_GITHUB_AUTOMATION_CREDS: ${{ secrets.SCUBA_GITHUB_AUTOMATION_CREDS }} | |
steps: | |
- name: Checkout repository | |
uses: actions/checkout@v4 | |
- name: Execute ScubaGoggles and check for correct output | |
run: | | |
echo "In step to execute ScubaGoggles" |