-
Notifications
You must be signed in to change notification settings - Fork 0
31 lines (28 loc) · 895 Bytes
/
full-test.yml
File metadata and controls
31 lines (28 loc) · 895 Bytes
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
name: Full Test Suite
on:
workflow_dispatch:
inputs:
package:
description: 'Package to test (async-cassandra, async-cassandra-bulk, or both)'
required: true
default: 'both'
type: choice
options:
- async-cassandra
- async-cassandra-bulk
- both
jobs:
async-cassandra:
if: ${{ github.event.inputs.package == 'async-cassandra' || github.event.inputs.package == 'both' }}
uses: ./.github/workflows/ci-monorepo.yml
with:
package: async-cassandra
run-integration-tests: true
run-full-suite: true
async-cassandra-bulk:
if: ${{ github.event.inputs.package == 'async-cassandra-bulk' || github.event.inputs.package == 'both' }}
uses: ./.github/workflows/ci-monorepo.yml
with:
package: async-cassandra-bulk
run-integration-tests: false
run-full-suite: false