-
Notifications
You must be signed in to change notification settings - Fork 55
41 lines (38 loc) · 1.16 KB
/
test_during_pr.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
name: Run tests during PR
on:
pull_request:
branches:
- master
concurrency:
group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }}
cancel-in-progress: true
jobs:
rust-format-check:
name: Rust format check
uses: ./.github/workflows/rust_format_check.yml
call-test-rust-workflow-in-local-repo:
name: Run Rust tests
uses: ./.github/workflows/test_rust_workflow.yml
secrets: inherit
needs: rust-format-check
call-test-rust-storage-workflow-in-local-repo:
name: Run Rust storage tests
uses: ./.github/workflows/test_rust_disk_storage_workflow.yml
secrets: inherit
needs: rust-format-check
call-test-python-workflow-in-local-repo:
name: Run Python tests
uses: ./.github/workflows/test_python_workflow.yml
with:
test_python_lower: false
secrets: inherit
needs: rust-format-check
call-benchmark-workflow-in-local-repo:
name: Run benchmarks
uses: ./.github/workflows/benchmark.yml
secrets: inherit
needs: rust-format-check
# call-code-coverage:
# name: Code Coverage
# uses: ./.github/workflows/code_coverage.yml
# needs: rust-format-check