-
Notifications
You must be signed in to change notification settings - Fork 0
45 lines (36 loc) · 905 Bytes
/
tests.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
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