Skip to content

Commit e694be5

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

File tree

2 files changed

+26
-1
lines changed

2 files changed

+26
-1
lines changed

.github/workflows/ruby.yml

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

-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)