We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c5a3b51 commit eb61991Copy full SHA for eb61991
1 file changed
.github/workflows/ruby-suites.yml
@@ -0,0 +1,26 @@
1
+name: Ruby Suites
2
+
3
+on:
4
+ push:
5
+ branches: [ "main" ]
6
+ pull_request:
7
8
9
+permissions:
10
+ contents: read
11
12
+jobs:
13
+ test:
14
+ runs-on: ubuntu-latest
15
+ steps:
16
+ - uses: actions/checkout@v4
17
+ - name: Set up Ruby
18
+ uses: ruby/setup-ruby@v1
19
+ with:
20
+ ruby-version: "3.4"
21
+ - name: Run SMTP Tests
22
+ run: |
23
+ ruby ports-rb/smtp.rb
24
+ - name: Run JSON RFC Tests
25
26
+ ruby ports-rb/json-rfc.rb
0 commit comments