Skip to content

Commit eb61991

Browse files
committed
Add workflow to run Ruby test suites
1 parent c5a3b51 commit eb61991

1 file changed

Lines changed: 26 additions & 0 deletions

File tree

.github/workflows/ruby-suites.yml

Lines changed: 26 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,26 @@
1+
name: Ruby Suites
2+
3+
on:
4+
push:
5+
branches: [ "main" ]
6+
pull_request:
7+
branches: [ "main" ]
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+
run: |
26+
ruby ports-rb/json-rfc.rb

0 commit comments

Comments
 (0)