Skip to content

Commit c216947

Browse files
ci: cleanup broken/slow actions (#309)
* fix source clear * fix readme build badge * remove readme url check
1 parent 1263f22 commit c216947

File tree

4 files changed

+33
-50
lines changed

4 files changed

+33
-50
lines changed

.github/workflows/lint_markdown.yml

Lines changed: 0 additions & 19 deletions
This file was deleted.

.github/workflows/ruby.yml

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
name: Ruby
1+
name: build
22

33
on:
44
push:
@@ -7,9 +7,6 @@ on:
77
branches: [ master ]
88

99
jobs:
10-
lint_markdown_files:
11-
uses: optimizely/ruby-sdk/.github/workflows/lint_markdown.yml@master
12-
1310
integration_tests:
1411
uses: optimizely/ruby-sdk/.github/workflows/integration_test.yml@master
1512
secrets:

.github/workflows/source_clear_crone.yml

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,11 @@ jobs:
1212
runs-on: ubuntu-latest
1313
steps:
1414
- uses: actions/checkout@v3
15+
- name: Set up Ruby
16+
uses: ruby/setup-ruby@v1
17+
with:
18+
ruby-version: '3.1'
19+
bundler-cache: true
1520
- name: Source clear scan
1621
env:
1722
SRCCLR_API_TOKEN: ${{ secrets.SRCCLR_API_TOKEN }}

README.md

Lines changed: 27 additions & 27 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# Optimizely Ruby SDK
2-
[![Build Status](https://travis-ci.org/optimizely/ruby-sdk.svg?branch=master)](https://travis-ci.org/optimizely/ruby-sdk)
2+
[![Build Status](https://github.com/optimizely/ruby-sdk/actions/workflows/ruby.yml/badge.svg?branch=master)](https://github.com/optimizely/ruby-sdk/actions/workflows/ruby.yml?query=branch%3Amaster)
33
[![Coverage Status](https://coveralls.io/repos/github/optimizely/ruby-sdk/badge.svg)](https://coveralls.io/github/optimizely/ruby-sdk)
44
[![Apache 2.0](https://img.shields.io/github/license/nebula-plugins/gradle-extra-configurations-plugin.svg)](http://www.apache.org/licenses/LICENSE-2.0)
55

@@ -66,7 +66,7 @@ You can initialize the Optimizely instance in two ways: directly with a datafile
6666
notification_center,
6767
event_processor
6868
)
69-
```
69+
```
7070
7171
7272
#### HTTP Config Manager
@@ -91,7 +91,7 @@ The `HTTPConfigManager` asynchronously polls for datafiles from a specified URL
9191
datafile_access_token: nil,
9292
proxy_config: nil
9393
)
94-
~~~~~~
94+
~~~~~~
9595
**Note:** You must provide either the `sdk_key` or URL. If you provide both, the URL takes precedence.
9696
9797
**sdk_key**
@@ -137,7 +137,7 @@ A notification signal will be triggered whenever a _new_ datafile is fetched and
137137
138138
#### BatchEventProcessor
139139
140-
[BatchEventProcessor](https://github.com/optimizely/ruby-sdk/blob/master/lib/optimizely/event/batch_event_processor.rb) is a batched implementation of the [EventProcessor](https://github.com/optimizely/ruby-sdk/blob/master/lib/optimizely/event/event_processor.rb)
140+
[BatchEventProcessor](https://github.com/optimizely/ruby-sdk/blob/master/lib/optimizely/event/batch_event_processor.rb) is a batched implementation of the [EventProcessor](https://github.com/optimizely/ruby-sdk/blob/master/lib/optimizely/event/event_processor.rb)
141141
142142
* Events passed to the `BatchEventProcessor` are immediately added to a `Queue`.
143143
@@ -153,7 +153,7 @@ event_processor = Optimizely::BatchEventProcessor.new(
153153
logger: logger,
154154
notification_center: notification_center
155155
)
156-
~~~~~~
156+
~~~~~~
157157
158158
#### Advanced configuration
159159
The following properties can be used to customize the `BatchEventProcessor` configuration.
@@ -204,45 +204,45 @@ Please see [CONTRIBUTING](CONTRIBUTING.md).
204204
### Credits
205205
This software incorporates code from the following open source projects:
206206
207-
**Httparty** [https://github.com/jnunemaker/httparty](https://github.com/jnunemaker/httparty)
208-
Copyright © 2008 John Nunemaker
207+
**Httparty** [https://github.com/jnunemaker/httparty](https://github.com/jnunemaker/httparty)
208+
Copyright © 2008 John Nunemaker
209209
License (MIT): [https://github.com/jnunemaker/httparty/blob/master/MIT-LICENSE](https://github.com/jnunemaker/httparty/blob/master/MIT-LICENSE)
210210
211-
**JSON Schema Validator** [https://github.com/ruby-json-schema/json-schema](https://github.com/ruby-json-schema/json-schema)
212-
Copyright © 2010-2011, Lookingglass Cyber Solutions
211+
**JSON Schema Validator** [https://github.com/ruby-json-schema/json-schema](https://github.com/ruby-json-schema/json-schema)
212+
Copyright © 2010-2011, Lookingglass Cyber Solutions
213213
License (MIT): [https://github.com/ruby-json-schema/json-schema/blob/master/LICENSE.md](https://github.com/ruby-json-schema/json-schema/blob/master/LICENSE.md)
214214
215-
**Murmurhash3** [https://github.com/funny-falcon/murmurhash3-ruby](https://github.com/funny-falcon/murmurhash3-ruby)
216-
Copyright © 2012 Sokolov Yura 'funny-falcon'
215+
**Murmurhash3** [https://github.com/funny-falcon/murmurhash3-ruby](https://github.com/funny-falcon/murmurhash3-ruby)
216+
Copyright © 2012 Sokolov Yura 'funny-falcon'
217217
License (MIT): [https://github.com/funny-falcon/murmurhash3-ruby/blob/master/LICENSE](https://github.com/funny-falcon/murmurhash3-ruby/blob/master/LICENSE)
218218
219219
220220
### Additional Code
221221
This software may be used with additional code that is separately downloaded by you. _These components are subject to
222222
their own license terms, which you should review carefully_.
223223
224-
**Bundler** [https://github.com/bundler/bundler](https://github.com/bundler/bundler)
225-
Copyright © 2008-2018 Andre Arko, Engine Yard, et al
224+
**Bundler** [https://github.com/bundler/bundler](https://github.com/bundler/bundler)
225+
Copyright © 2008-2018 Andre Arko, Engine Yard, et al
226226
License (MIT): [https://github.com/bundler/bundler/blob/master/LICENSE.md](https://github.com/bundler/bundler/blob/master/LICENSE.md)
227227
228-
**Coveralls** [https://github.com/lemurheavy/coveralls-ruby](https://github.com/lemurheavy/coveralls-ruby)
229-
Copyright © 2012 Wil Gieseler
228+
**Coveralls** [https://github.com/lemurheavy/coveralls-ruby](https://github.com/lemurheavy/coveralls-ruby)
229+
Copyright © 2012 Wil Gieseler
230230
License (MIT): [https://github.com/lemurheavy/coveralls-ruby/blob/master/LICENSE](https://github.com/lemurheavy/coveralls-ruby/blob/master/LICENSE)
231231
232-
**Rake** [https://github.com/ruby/rake](https://github.com/ruby/rake)
233-
Copyright © 2004-2017 Jim Weirich
234-
License (MIT): [https://github.com/ruby/rake/blob/master/MIT-LICENSE](https://github.com/ruby/rake/blob/master/MIT-LICENSE)
232+
**Rake** [https://github.com/ruby/rake](https://github.com/ruby/rake)
233+
Copyright © 2004-2017 Jim Weirich
234+
License (MIT): [https://github.com/ruby/rake/blob/master/MIT-LICENSE](https://github.com/ruby/rake/blob/master/MIT-LICENSE)
235235
236-
**RSpec** [https://github.com/rspec/rspec](https://github.com/rspec/rspec)
237-
Copyright © 2009 Chad Humphries, David Chelimsky
238-
Copyright © 2006 David Chelimsky, The RSpec Development Team
239-
Copyright © 2005 Steven Baker
240-
License (MIT): [https://github.com/rspec/rspec/blob/master/LICENSE.md](https://github.com/rspec/rspec/blob/master/LICENSE.md)
236+
**RSpec** [https://github.com/rspec/rspec](https://github.com/rspec/rspec)
237+
Copyright © 2009 Chad Humphries, David Chelimsky
238+
Copyright © 2006 David Chelimsky, The RSpec Development Team
239+
Copyright © 2005 Steven Baker
240+
License (MIT): [https://github.com/rspec/rspec/blob/master/LICENSE.md](https://github.com/rspec/rspec/blob/master/LICENSE.md)
241241
242-
**RuboCop** [https://github.com/rubocop-hq/rubocop](https://github.com/rubocop-hq/rubocop)
243-
Copyright © 2012-19 Bozhidar Batsov
242+
**RuboCop** [https://github.com/rubocop-hq/rubocop](https://github.com/rubocop-hq/rubocop)
243+
Copyright © 2012-19 Bozhidar Batsov
244244
License (MIT): [https://github.com/rubocop-hq/rubocop/blob/master/LICENSE.txt](https://github.com/rubocop-hq/rubocop/blob/master/LICENSE.txt)
245245
246-
**WebMock** [https://github.com/bblimke/webmock](https://github.com/bblimke/webmock)
247-
Copyright © 2009-2010 Bartosz Blimke
246+
**WebMock** [https://github.com/bblimke/webmock](https://github.com/bblimke/webmock)
247+
Copyright © 2009-2010 Bartosz Blimke
248248
License (MIT): [https://github.com/bblimke/webmock/blob/master/LICENSE](https://github.com/bblimke/webmock/blob/master/LICENSE)

0 commit comments

Comments
 (0)