Integration Tests #32
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 | |
on: | |
workflow_dispatch: | |
inputs: | |
scriptName: | |
type: choice | |
description: "Script to run" | |
options: | |
- omnichain_swap | |
- omnichain_staking | |
- omnichain_multioutput | |
- messaging_counter | |
- messaging_message | |
- messaging_value | |
- messaging_warriors | |
schedule: | |
- cron: "0 0 * * *" # Runs every day at midnight | |
jobs: | |
scheduled_integration_tests: | |
if: github.event_name == 'schedule' | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v2 | |
- name: Install jq | |
run: sudo apt-get update && sudo apt-get install -y jq | |
- name: Run All Scripts in scripts/test Directory | |
run: | | |
for script in scripts/test/*; do | |
if [ -f "$script" ] && [ -x "$script" ]; then | |
echo "Running $script..." | |
./$script | |
fi | |
done | |
env: | |
PRIVATE_KEY: ${{ secrets.PRIVATE_KEY }} | |
manual_integration_tests: | |
if: github.event_name == 'workflow_dispatch' | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v2 | |
- name: Install jq | |
run: sudo apt-get update && sudo apt-get install -y jq | |
- name: Run Script | |
run: | | |
sh ${{ github.workspace }}/scripts/test/${{ github.event.inputs.scriptName }}.sh | |
env: | |
PRIVATE_KEY: ${{ secrets.PRIVATE_KEY }} |