File tree 4 files changed +28
-9
lines changed
4 files changed +28
-9
lines changed Original file line number Diff line number Diff line change @@ -2,9 +2,6 @@ name: Test CLI
2
2
3
3
on :
4
4
workflow_call :
5
- pull_request :
6
- branches :
7
- - main
8
5
9
6
permissions :
10
7
contents : read
Original file line number Diff line number Diff line change 5
5
secrets :
6
6
E2B_API_KEY :
7
7
required : true
8
- pull_request :
9
- branches :
10
- - main
11
8
12
9
permissions :
13
10
contents : read
Original file line number Diff line number Diff line change
1
+ name : Pull Request
2
+
3
+ permissions :
4
+ contents : read
5
+ id-token : write
6
+
7
+ concurrency :
8
+ group : ${{ github.workflow }}-${{ github.ref }}
9
+ cancel-in-progress : true
10
+
11
+ on :
12
+ pull_request :
13
+ branches :
14
+ - main
15
+
16
+ jobs :
17
+ js-sdk :
18
+ uses : ./.github/workflows/js_sdk_tests.yml
19
+ secrets :
20
+ E2B_API_KEY : ${{ secrets.E2B_API_KEY }}
21
+ python-sdk :
22
+ uses : ./.github/workflows/python_sdk_tests.yml
23
+ secrets :
24
+ E2B_API_KEY : ${{ secrets.E2B_API_KEY }}
25
+ cli :
26
+ uses : ./.github/workflows/cli_tests.yml
27
+ secrets :
28
+ E2B_API_KEY : ${{ secrets.E2B_API_KEY }}
Original file line number Diff line number Diff line change 5
5
secrets :
6
6
E2B_API_KEY :
7
7
required : true
8
- pull_request :
9
- branches :
10
- - main
11
8
12
9
permissions :
13
10
contents : read
You can’t perform that action at this time.
0 commit comments