We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent dc645ff commit e694be5Copy full SHA for e694be5
.github/workflows/ruby.yml
@@ -0,0 +1,26 @@
1
+name: Ruby CI
2
+
3
+on:
4
+ pull_request:
5
+ branches:
6
+ - master
7
8
+jobs:
9
+ test:
10
11
+ runs-on: ubuntu-latest
12
13
+ strategy:
14
+ matrix:
15
+ ruby-version: ["2.3"]
16
17
+ steps:
18
+ - uses: actions/checkout@v4
19
+ - name: Set up Ruby ${{ matrix.ruby-version }}
20
+ uses: ruby/setup-ruby@v1
21
+ with:
22
+ ruby-version: ${{ matrix.ruby-version }}
23
+ - name: Install dependencies
24
+ run: bundle install
25
+ - name: Run tests
26
+ run: bundle exec rspec spec
.gitignore
@@ -5,4 +5,3 @@ log/*.log
# Documentation
.yardoc
doc/
-.github
0 commit comments