File tree Expand file tree Collapse file tree 2 files changed +38
-0
lines changed Expand file tree Collapse file tree 2 files changed +38
-0
lines changed Original file line number Diff line number Diff line change
1
+ ### What
2
+
3
+ ** CHANGEME: What are you changing? **
4
+
5
+ ### Why
6
+
7
+ ** CHANGEME: Why are these changes needed? **
8
+
9
+ ### SDK Release Checklist
10
+
11
+ - [ ] Have you added an integration test for the changes?
12
+ - [ ] Have you built the gem locally and made queries against it successfully?
13
+ - [ ] Did you update the changelog?
14
+ - [ ] Did you bump the package version?
15
+ - [ ] For breaking changes, did you plan for the release of the new SDK versions and deploy the API to production?
Original file line number Diff line number Diff line change
1
+ name : Test
2
+ on :
3
+ push :
4
+ branches :
5
+ - main
6
+ pull_request :
7
+
8
+ jobs :
9
+ build-and-test :
10
+ runs-on : ubuntu-latest
11
+ name : Python Library tests
12
+ steps :
13
+ - name : Check out code
14
+ uses : actions/checkout@v2
15
+
16
+ - name : Setup Python
17
+ - uses : actions/setup-python@v2
18
+ with :
19
+ python-version : ' 3.x'
20
+ - name : Run tests
21
+ env :
22
+ SANDBOX_API_KEY : ${{ secrets.SANDBOX_API_KEY }}
23
+ run : make test
You can’t perform that action at this time.
0 commit comments