Skip to content

Commit e2175ae

Browse files
committed
add github configuration
1 parent 0b285e2 commit e2175ae

File tree

2 files changed

+38
-0
lines changed

2 files changed

+38
-0
lines changed

.github/PULL_REQUEST_TEMPLATE.md

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
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?

.github/workflows/test.yml

Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
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

0 commit comments

Comments
 (0)