Skip to content

Commit 446fa2d

Browse files
committed
Add CI setting
1 parent f6e853f commit 446fa2d

File tree

1 file changed

+19
-0
lines changed

1 file changed

+19
-0
lines changed

.circleci/config.yml

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
version: 2.1
2+
3+
orbs:
4+
ruby-orbs: sue445/ruby-orbs@volatile
5+
6+
jobs:
7+
test:
8+
docker:
9+
- image: cimg/ruby:3.0
10+
steps:
11+
- checkout
12+
- ruby-orbs/bundle-install:
13+
gemspec_name: fluent-plugin-time-series-counter
14+
with_gemfile_lock: false
15+
- run: bundle exec rake test
16+
workflows:
17+
test:
18+
jobs:
19+
- test

0 commit comments

Comments
 (0)