diff --git a/.github/workflows/run-hypex.yml b/.github/workflows/run-hypex.yml new file mode 100644 index 0000000..06efbe4 --- /dev/null +++ b/.github/workflows/run-hypex.yml @@ -0,0 +1,22 @@ +name: Run Hyperexecute + +on: + push: + branches: + - main # Change this to your repository's default branch + +jobs: + build: + runs-on: ubuntu-latest + + steps: + - name: Checkout code + uses: actions/checkout@v2 + + - name: Set up the environment + run: | + wget https://downloads.lambdatest.com/hyperexecute/linux/hyperexecute + chmod +x hyperexecute + echo "Performing test" + ./hyperexecute --user mohammadk --key rakcBoBYHiy8BW7osVi4N1LGYjgJhRfAwvL1pPUvwCA1wfNChd --config yaml/win/cucumber_hyperexecute_autosplit_sample.yaml --download-artifacts --force-clean-artifacts + echo "Test completion!"