Skip to content

Commit 5100717

Browse files
author
Dorian Marié
authored
Add CircleCI (#1)
* Add .circleci/config.yml * simple CircleCI testing setup * Try to fix CircleCI config with workflow * Test with ruby 3.1.2 * Add CircleCI Badge
1 parent b4a9820 commit 5100717

File tree

2 files changed

+17
-0
lines changed

2 files changed

+17
-0
lines changed

.circleci/config.yml

+15
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
version: 2.1
2+
3+
jobs:
4+
test:
5+
docker:
6+
- image: cimg/ruby:3.1.2
7+
steps:
8+
- checkout
9+
- run: bundle install
10+
- run: rspec
11+
12+
workflows:
13+
test:
14+
jobs:
15+
- test

README.markdown

+2
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
[![CircleCI](https://circleci.com/gh/dorianmariefr/cookiejar2/tree/main.svg?style=svg)](https://circleci.com/gh/dorianmariefr/cookiejar2/tree/main)
2+
13
This is a fork to fix warnings.
24

35
-----

0 commit comments

Comments
 (0)