Skip to content

Commit ae05ff9

Browse files
authored
Merge pull request #12 from patch-technology/lovisa/post-mortem-updates
Updates after post-mortem
2 parents 94a7918 + 8e53498 commit ae05ff9

File tree

3 files changed

+20
-0
lines changed

3 files changed

+20
-0
lines changed

.github/PULL_REQUEST_TEMPLATE.md

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

.github/workflows/publish.yml

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,11 @@ jobs:
1919
- name: Build Gem
2020
run: gem build -o patch_ruby.gem patch_ruby.gemspec
2121

22+
- name: Run RSpec
23+
env:
24+
PATCH_RUBY_API_KEY: ${{ secrets.SANDBOX_API_KEY }}
25+
run: bundle exec rspec
26+
2227
- name: Push to RubyGems
2328
env:
2429
GEM_HOST_API_KEY: ${{ secrets.GEM_HOST_API_KEY }}

.github/workflows/test.yml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,9 @@ jobs:
2121
- name: Install Ruby Dependencies
2222
run: bundle install
2323

24+
- name: Build Gem
25+
run: gem build -o patch_ruby.gem patch_ruby.gemspec
26+
2427
- name: Run RSpec
2528
env:
2629
PATCH_RUBY_API_KEY: ${{ secrets.SANDBOX_API_KEY }}

0 commit comments

Comments
 (0)