We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 19e8290 commit 7008f72Copy full SHA for 7008f72
.github/workflows/deploy-dev.yml
@@ -6,8 +6,11 @@ on:
6
pull_request:
7
branches:
8
- main
9
+ types: [opened, synchronize, reopened, ready_for_review]
10
+
11
jobs:
12
test-unit:
13
+ if: github.event.pull_request.draft == false
14
runs-on: ubuntu-latest
15
name: Run Unit Tests
16
steps:
@@ -25,6 +28,7 @@ jobs:
25
28
- name: Run unit testing
26
29
run: make test_unit
27
30
deploy-dev:
31
32
33
concurrency:
34
group: ${{ github.event.repository.name }}-dev-env
@@ -69,6 +73,7 @@ jobs:
69
73
branch: main
70
74
71
75
test-dev:
76
72
77
78
name: Run Live Tests
79
needs:
0 commit comments