Skip to content

Commit da6ca0f

Browse files
committed
[#120] Fix Broken CI Pipeline by Using GH Actions
1 parent dc645ff commit da6ca0f

File tree

2 files changed

+23
-1
lines changed

2 files changed

+23
-1
lines changed

.github/workflows/ruby.yml

+23
Original file line numberDiff line numberDiff line change
@@ -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

-1
Original file line numberDiff line numberDiff line change
@@ -5,4 +5,3 @@ log/*.log
55
# Documentation
66
.yardoc
77
doc/
8-
.github

0 commit comments

Comments
 (0)