#230: Created new deploy method with similar parameters as in python-… #499
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: CI_Env_Test | |
on: | |
push: | |
jobs: | |
prep-testbed: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- id: set-matrix | |
run: | | |
sudo apt-get install jq | |
echo "::set-output name=matrix::$(bash ./scripts/test/ci_tests/get_ci_envs.sh)" | |
outputs: | |
matrix: ${{ steps.set-matrix.outputs.matrix }} | |
test-envs: | |
needs: prep-testbed | |
strategy: | |
fail-fast: false | |
matrix: | |
test-path: ${{fromJson(needs.prep-testbed.outputs.matrix)}} | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Run all env tests | |
run: ./scripts/test/ci_tests/run_ci_test.sh ${{ matrix.test-path }} |