LEAF-4487 - switch headers over to use the new name and value chosen #896
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 automated tests on push to master | ||
on: | ||
pull_request: | ||
branches: | ||
-master | ||
push : | ||
branches: | ||
include: | ||
- '*' | ||
jobs: | ||
run-sanity-automated-tests-on-push-to-main: | ||
runs-on: ubutnu-latest | ||
steps: | ||
- name: checkout project | ||
uses: actions/checkout@v4 | ||
- name: run tests | ||
run: | | ||
cd test/Test-Automation | ||
SCRIPT=test.java.formWorkflow.formWorkflow_Test docker compose up | ||
run-regression-automated-tests-on-push-to-main: | ||
runs-on: ubutnu-latest | ||
steps: | ||
- name: checkout project | ||
uses: actions/checkout@v4 | ||
- name: run tests | ||
run: | | ||
cd test/Test-Automation | ||
SCRIPT=test.java.formWorkflow.formWorkflow_Test docker compose up |