new commit for testing #51
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: run-integ-tests | |
on: | |
pull_request: | |
branches: [ "main" ] | |
jobs: | |
run-integ-tests: | |
environment: integ-test-workflow-env | |
name: run integ tests | |
runs-on: ubuntu-latest | |
steps: | |
- name: submit integ test suite run | |
# this needs to wait until the cached build is available... | |
# can use $GITHUB_SHA to get the last commit hash on the PR | |
run: | | |
curl --header "Content-Type: application/json" --request POST \ | |
--data '{"prNumber":${{ github.event.number }}}' \ | |
https://cha3gpm0dk.execute-api.eu-west-3.amazonaws.com/prod/ |