diff --git a/.github/workflows/ee2-tests.yml b/.github/workflows/ee2-tests.yml index 41007ff9..95bfec8a 100644 --- a/.github/workflows/ee2-tests.yml +++ b/.github/workflows/ee2-tests.yml @@ -1,7 +1,4 @@ # This workflow will install Python dependencies, run tests and lint -# For more information see: https://help.github.com/actions/language-and-framework-guides/using-python-with-github-actions - - name: Execution Engine 2 Test Suite on: @@ -43,18 +40,17 @@ jobs: with: path: "./test" - - Build_and_Run_Tests_and_CodeCov: name: Build and Run Tests and CodeCov runs-on: ubuntu-latest strategy: matrix: mongo-config: - - version: "7.0" - init-path: "./test/dockerfiles/mongo/docker-entrypoint-initdb.d-7.0/" - - version: "3.6" - init-path: "./test/dockerfiles/mongo/docker-entrypoint-initdb.d-3.6/" + - "7.0" + - "3.6" + init-path: + - "./test/dockerfiles/mongo/docker-entrypoint-initdb.d-7.0/" + - "./test/dockerfiles/mongo/docker-entrypoint-initdb.d-3.6/" steps: - name: Check out source repository uses: actions/checkout@v4 @@ -75,7 +71,10 @@ jobs: docker compose up -d cp test/env/test.travis.env test.env make test-coverage - codecov --token="${{ secrets.CODECOV_TOKEN }}" + - name: Upload coverage reports to Codecov + uses: codecov/codecov-action@v4 + with: + token: ${{ secrets.CODECOV_TOKEN }} - name: Cleanup run: | docker compose down