Run Integration Test for commit 08449b343e1295a5645a1bad539d81b2781eca5f #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: Integration Tests | |
run-name: Run Integration Test for commit ${{ github.sha }} | |
on: | |
workflow_dispatch: {} | |
push: | |
branches: | |
- ci/* | |
jobs: | |
echo-hello-world: | |
name: Echo Hello World | |
runs-on: ubuntu-latest | |
strategy: | |
fail-fast: false | |
steps: | |
- name: Echo Hello World | |
run: | | |
echo "Hello World" |