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 df57020 commit 22da276Copy full SHA for 22da276
.github/workflows/pr-verify.yml
@@ -0,0 +1,44 @@
1
+name: Run Tests
2
+
3
+on:
4
+ pull_request:
5
+ branches:
6
+ - main
7
+ push:
8
9
+ - darin/update-aws-sdk
10
11
+jobs:
12
+ # Test on code-dot-org Ruby version
13
+ test_3_0_5:
14
+ runs-on: ubuntu-latest
15
16
+ steps:
17
+ - name: Checkout code
18
+ uses: actions/checkout@v3
19
20
+ - name: Set up Ruby
21
+ uses: ruby/setup-ruby@v1
22
+ with:
23
+ ruby-version: 3.0.5
24
+ bundler-cache: true
25
26
+ - name: Run tests
27
+ run: rake test
28
29
+ # Test on latest Ruby
30
+ test_3_3:
31
32
33
34
35
36
37
38
39
40
+ ruby-version: 3.3
41
42
43
44
0 commit comments