difftreelog
fix market-test
in: master
1 file changed
.github/workflows/market-test.ymldiffbeforeafterboth11# A workflow run is made up of one or more jobs that can run sequentially or in parallel11# A workflow run is made up of one or more jobs that can run sequentially or in parallel12jobs:12jobs:131314 prepare-execution-marix:1516 name: Prepare execution matrix1718 runs-on: [self-hosted-ci]19 outputs:20 matrix: ${{ steps.create_matrix.outputs.matrix }}2122 steps:2324 - name: Clean Workspace25 uses: AutoModality/action-clean@v1.1.02627 # Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it28 - uses: actions/checkout@v3.1.029 with:30 ref: ${{ github.head_ref }} #Checking out head commit3132 - name: Read .env file33 uses: xom9ikk/dotenv@v23435 - name: Create Execution matrix36 uses: CertainLach/create-matrix-action@v437 id: create_matrix38 with:39 matrix: |40 network {opal}, relay_branch {${{ env.UNIQUEWEST_MAINNET_BRANCH }}}414214 market_test:43 market_test:44 needs: prepare-execution-marix15 # The type of runner that the job will run on45 # The type of runner that the job will run on16 runs-on: [self-hosted-ci,large]46 runs-on: [self-hosted-ci,large]17 timeout-minutes: 36047 timeout-minutes: 36022 52 23 strategy:53 strategy:24 matrix:54 matrix:25 include:55 include: ${{fromJson(needs.prepare-execution-marix.outputs.matrix)}}26 - network: "opal", relay_branch {${{ env.UNIQUEWEST_MAINNET_BRANCH }}}275628 steps:57 steps:29 - name: Clean Workspace58 - name: Clean Workspace