Skip to content

Commit aeee355

Browse files
committed
[CI] Adds GitHub Actions to 6.x
1 parent a88d10d commit aeee355

File tree

1 file changed

+27
-0
lines changed

1 file changed

+27
-0
lines changed

.github/workflows/6.x.yml

Lines changed: 27 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,27 @@
1+
name: 6.x
2+
on:
3+
push:
4+
branches:
5+
- 6.x
6+
pull_request:
7+
branches:
8+
- 6.x
9+
jobs:
10+
test-6x:
11+
strategy:
12+
fail-fast: false
13+
matrix:
14+
ruby: [ 2.3, 2.4, 2.5, 2.6, 2.7, jruby ]
15+
runs-on: ubuntu-latest
16+
steps:
17+
- uses: actions/checkout@v2
18+
- uses: ruby/setup-ruby@v1
19+
with:
20+
ruby-version: ${{ matrix.ruby }}
21+
- name: Build and test with Rake
22+
run: |
23+
sudo apt-get install libcurl4-openssl-dev
24+
ruby -v
25+
rake bundle:clean
26+
rake bundle:install
27+
rake test:unit

0 commit comments

Comments
 (0)