Skip to content

Commit fa0429d

Browse files
authored
Merge branch 'master' into position
2 parents b4c1a21 + 8426118 commit fa0429d

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

47 files changed

+1460
-797
lines changed

.circleci/config.yml

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

.github/FUNDING.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# These are supported funding model platforms
22

33
github: # route
4-
patreon: rubycdp_ferrum
4+
patreon: rubycdp
55
open_collective: # Replace with a single Open Collective username
66
ko_fi: # Replace with a single Ko-fi username
77
tidelift: # Replace with a single Tidelift platform-name/package-name e.g., npm/babel

gemfiles/websocket-driver-0.6.x.gemfile renamed to .github/gemfiles/websocket-driver-0.6.x.gemfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,4 +4,4 @@ source "https://rubygems.org"
44

55
gem "websocket-driver", "~> 0.6.5"
66

7-
gemspec path: "../"
7+
gemspec path: "../../"

gemfiles/websocket-driver-0.7.x.gemfile renamed to .github/gemfiles/websocket-driver-0.7.x.gemfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,4 +4,4 @@ source "https://rubygems.org"
44

55
gem "websocket-driver", "~> 0.7.1"
66

7-
gemspec path: "../"
7+
gemspec path: "../../"

.github/workflows/tests.yml

Lines changed: 39 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,39 @@
1+
name: Tests
2+
on: [push]
3+
4+
jobs:
5+
tests:
6+
name: Tests
7+
8+
strategy:
9+
fail-fast: false
10+
matrix:
11+
gemfile: [websocket-driver-0.6.x, websocket-driver-0.7.x]
12+
ruby: [2.5, 2.6, 2.7]
13+
14+
runs-on: ubuntu-latest
15+
env:
16+
FERRUM_PROCESS_TIMEOUT: 20
17+
FERRUM_DEFAULT_TIMEOUT: 10
18+
BUNDLE_GEMFILE: .github/gemfiles/${{ matrix.gemfile }}.gemfile
19+
steps:
20+
- name: Checkout code
21+
uses: actions/checkout@v2
22+
23+
- name: Setup Ruby
24+
uses: ruby/setup-ruby@v1
25+
with:
26+
ruby-version: ${{ matrix.ruby }}
27+
bundler-cache: true
28+
29+
- run: mkdir -p /tmp/ferrum
30+
31+
- name: Run tests
32+
run: bundle exec rake
33+
34+
- name: Archive artifacts
35+
uses: actions/upload-artifact@v2
36+
if: ${{ failure() }}
37+
with:
38+
name: footprints
39+
path: /tmp/ferrum/

0 commit comments

Comments
 (0)