diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 971e91ea92..c931861180 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -159,27 +159,15 @@ jobs: matrix: os: [ ubuntu-20.04 ] # list of os: https://github.com/actions/virtual-environments runs-on: ${{ matrix.os }} + dependencies: + - build + - unit-tests + - integration-tests steps: - - uses: actions/checkout@v3 - - run: | - git submodule update --init --recursive --force - git fetch --no-tags --prune --depth=1 origin +refs/heads/master:refs/remotes/origin/master - - - name: Install gocovmerge - run: make gocovmerge-deps - - - name: Merge coverage files - run: gocovmerge ./*.out > ./merged.out - - name: Upload coverage to Codecov uses: codecov/codecov-action@v1 with: file: ./cover.out - - - name: Upload combined coverage to Codecov - uses: codecov/codecov-action@v1 - with: - file: ./merged.out e2e-tests: if: (github.event.action != 'closed' || github.event.pull_request.merged == true)