Test clean for resubmission pipeline #30
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: Validate test environment cleaner | |
on: | |
pull_request: | |
paths: | |
- 'jenkins_pipelines/scripts/test_environment_cleaner/**' | |
jobs: | |
test: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Validate api manager script | |
uses: actions/checkout@v2 | |
- name: Set up Python 3.11 | |
uses: actions/setup-python@v2 | |
with: | |
python-version: '3.11' | |
- name: Install dependencies | |
run: | | |
python3.11 -m pip install --upgrade pip | |
pip3.11 install -r jenkins_pipelines/scripts/test_environment_cleaner/requirements.txt | |
- name: Run tests | |
run: cd jenkins_pipelines/scripts/test_environment_cleaner; ./run_tests.sh |