Skip to content

Commit 848d77b

Browse files
authored
Same steps as build-unstable (#1550)
* Same steps as build-unstable * make setup
1 parent e4e8f2e commit 848d77b

File tree

2 files changed

+28
-4
lines changed

2 files changed

+28
-4
lines changed

.github/workflows/prepare-release.yml

Lines changed: 14 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -44,8 +44,20 @@ jobs:
4444
- name: Setup Environment
4545
run: make setup
4646

47-
- name: Build and Test
48-
run: make test
47+
- name: Build
48+
run: make build
49+
50+
- name: TypeScript Tests
51+
run: make test-ts
52+
53+
- name: Python Tests
54+
run: make test-py
55+
56+
- name: Integration Tests
57+
run: make test-integration-parallel
58+
59+
- name: Examples Tests
60+
run: make test-examples
4961

5062
- name: Zip build folder
5163
run: zip -r -q ./build.zip ./build

.github/workflows/publish-release.yml

Lines changed: 14 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -46,8 +46,20 @@ jobs:
4646
- name: Setup Environment
4747
run: make setup
4848

49-
- name: Build and Test
50-
run: make test
49+
- name: Build
50+
run: make build
51+
52+
- name: TypeScript Tests
53+
run: make test-ts
54+
55+
- name: Python Tests
56+
run: make test-py
57+
58+
- name: Integration Tests
59+
run: make test-integration-parallel
60+
61+
- name: Examples Tests
62+
run: make test-examples
5163

5264
# Upload to S3
5365
- name: Configure AWS credentials

0 commit comments

Comments
 (0)