We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d546d4b commit 186f883Copy full SHA for 186f883
.github/workflows/sdk_test.yaml
@@ -0,0 +1,26 @@
1
+name: Test
2
+permissions:
3
+ checks: write
4
+ contents: write
5
+ pull-requests: write
6
+ statuses: write
7
+ id-token: write
8
+"on":
9
+ pull_request:
10
+ branches:
11
+ - main
12
+ paths:
13
+ - '**'
14
+ workflow_dispatch:
15
+ inputs:
16
+ target:
17
+ description: Provided SDK target to run tests for, (all) is valid
18
+ type: string
19
+jobs:
20
+ test:
21
+ uses: speakeasy-api/sdk-generation-action/.github/workflows/sdk-test.yaml@v15
22
+ with:
23
+ target: ${{ github.event.inputs.target || 'glean' }}
24
+ secrets:
25
+ github_access_token: ${{ secrets.GITHUB_TOKEN }}
26
+ speakeasy_api_key: ${{ secrets.SPEAKEASY_API_KEY }}
0 commit comments