feat: create a test thermometer (#10) #97
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: [push] | |
jobs: | |
smoke_test: | |
runs-on: ubuntu-latest | |
name: Smoke Test | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Generate Test Summary | |
id: generate-summary | |
uses: ./ | |
with: | |
artifact_directory: example-artifacts/ | |
- name: If there are alerts, echo them | |
if: ${{steps.generate-summary.outputs.alerts}} | |
run: echo "${{steps.generate-summary.outputs.alerts}}" | |
- name: Echo the thermometer | |
run: echo "${{steps.generate-summary.outputs.thermometer}}" |