We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents e726b53 + df7b89c commit 6f7bb1fCopy full SHA for 6f7bb1f
1 file changed
.github/workflows/ci.yml
@@ -0,0 +1,20 @@
1
+name: Validate
2
+
3
+on:
4
+ pull_request:
5
+ types: [opened, reopened, synchronize]
6
7
+jobs:
8
+ validate:
9
+ runs-on: ubuntu-latest
10
+ permissions:
11
+ contents: read
12
+ steps:
13
+ - uses: actions/checkout@v4
14
+ with:
15
+ persist-credentials: false
16
+ - uses: ruby/setup-ruby@v1
17
18
+ ruby-version: '3.2'
19
+ - name: Build gem
20
+ run: gem build komoju-sdk.gemspec
0 commit comments