[DOP-13277] Collect coverage results #1
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: Collect coverage Tests | |
on: | |
push: | |
branches: | |
- develop | |
pull_request: | |
branches-ignore: | |
- master | |
workflow_dispatch: | |
concurrency: | |
group: ${{ github.workflow }}-${{ github.head_ref || github.ref }} | |
cancel-in-progress: true | |
env: | |
DEFAULT_PYTHON: '3.11' | |
jobs: | |
tests: | |
name: Run all tests | |
runs-on: ubuntu-latest | |
steps: | |
- name: Run Oracle tests | |
uses: ./.github/workflows/oracle-tests.yml | |
- name: Run Hive tests | |
uses: ./.github/workflows/hive-tests.yml | |
- name: Run S3 tests | |
uses: ./.github/workflows/s3-tests.yml | |
- name: Run unit tests | |
uses: ./.github/workflows/unit-test.yml | |
all_done: | |
name: Tests done | |
runs-on: ubuntu-latest | |
needs: tests | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v4 | |
- name: Generate coverate reports | |
run: ./combine_coverage.sh |