generated from cisagov/ScubaGear
-
Notifications
You must be signed in to change notification settings - Fork 22
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
cleanup, add run_smoke_test workflow
- Loading branch information
1 parent
2f65e1b
commit a9c58a1
Showing
2 changed files
with
27 additions
and
10 deletions.
There are no files selected for viewing
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,25 @@ | ||
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" |
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