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