forked from alshamiri5/client-encryption-ruby
-
Notifications
You must be signed in to change notification settings - Fork 0
37 lines (37 loc) · 724 Bytes
/
test.yml
File metadata and controls
37 lines (37 loc) · 724 Bytes
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
name: Build & Test
'on':
push:
branches:
- "**"
pull_request:
branches:
- "**"
schedule:
- cron: 0 16 * * *
workflow_dispatch:
jobs:
test:
runs-on: ubuntu-latest
strategy:
matrix:
rvm:
- 2.4.4
- truffleruby
- 2.4
- 2.5
- 2.6
- 2.7
- 3.0
steps:
- uses: actions/checkout@v2
- name: Set up Ruby
uses: ruby/setup-ruby@v1
with:
ruby-version: '${{ matrix.rvm }}'
- name: Install dependencies
run: bundle install --jobs=3 --retry=3
- name: Run tests
run: |
gem build *.gemspec
gem install *.gem
rake test