-
-
Notifications
You must be signed in to change notification settings - Fork 15
85 lines (69 loc) · 1.73 KB
/
development.yml
File metadata and controls
85 lines (69 loc) · 1.73 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
name: Development
on: [push, pull_request]
jobs:
test:
runs-on: ${{matrix.os}}-latest
continue-on-error: ${{matrix.experimental}}
strategy:
matrix:
os:
- ubuntu
- macos
ruby:
- "2.6"
- "2.7"
- "3.0"
experimental: [false]
env: [""]
include:
- os: ubuntu
ruby: truffleruby
experimental: true
- os: ubuntu
ruby: jruby
experimental: true
- os: ubuntu
ruby: head
experimental: true
- os: ubuntu
ruby: "2.7"
proxy: http://localhost:3128
steps:
- uses: actions/checkout@v2
- uses: ruby/setup-ruby@v1
with:
ruby-version: ${{matrix.ruby}}
bundler-cache: true
- name: Run tests
timeout-minutes: 5
run: ${{matrix.env}} bundle exec rspec
test-with-proxy:
runs-on: ${{matrix.os}}-latest
continue-on-error: ${{matrix.experimental}}
strategy:
matrix:
os:
- ubuntu
ruby:
- "2.7"
experimental: [false]
env: [""]
proxy:
- http://localhost:3128
steps:
- uses: actions/checkout@v2
- uses: ruby/setup-ruby@v1
with:
ruby-version: ${{matrix.ruby}}
- name: Install dependencies
run: ${{matrix.env}} bundle install
- name: Prepare squid
if: matrix.proxy
run: |
sudo apt-get install squid
sudo systemctl start squid
- name: Run tests
timeout-minutes: 5
env:
PROXY_URL: ${{matrix.proxy}}
run: ${{matrix.env}} bundle exec rspec