forked from temporalio/sdk-php
-
Notifications
You must be signed in to change notification settings - Fork 0
50 lines (43 loc) · 1.11 KB
/
Copy pathtesting.yml
File metadata and controls
50 lines (43 loc) · 1.11 KB
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
46
47
48
49
50
name: Testing
on: [push, pull_request]
permissions:
contents: read
concurrency:
cancel-in-progress: ${{ !contains(github.ref, 'release/')}}
group: tests-${{ github.workflow }}-${{ github.ref }}
jobs:
unit:
permissions:
contents: read
name: Unit Testing
uses: ./.github/workflows/run-test-suite.yml
with:
fail-fast: false
test-command: composer test:unit
functional:
permissions:
contents: read
name: Functional Testing
uses: ./.github/workflows/run-test-suite.yml
with:
fail-fast: false
test-command: composer test:func
download-binaries: true
acceptance-slow:
permissions:
contents: read
name: Acceptance Testing (Slow)
uses: ./.github/workflows/run-test-suite.yml
with:
fail-fast: false
test-command: composer test:accept-slow
download-binaries: true
acceptance-fast:
permissions:
contents: read
name: Acceptance Testing (Fast)
uses: ./.github/workflows/run-test-suite.yml
with:
fail-fast: false
test-command: composer test:accept-fast
download-binaries: true