-
Notifications
You must be signed in to change notification settings - Fork 0
51 lines (47 loc) · 1.36 KB
/
ruby.yml
File metadata and controls
51 lines (47 loc) · 1.36 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
name: build
on:
push:
branches: [ master ]
pull_request:
branches: [ master ]
jobs:
integration_tests:
uses: optimizely/ruby-sdk/.github/workflows/integration_test.yml@master
secrets:
CI_USER_TOKEN: ${{ secrets.CI_USER_TOKEN }}
TRAVIS_COM_TOKEN: ${{ secrets.TRAVIS_COM_TOKEN }}
fullstack_production_suite:
uses: optimizely/ruby-sdk/.github/workflows/integration_test.yml@master
with:
FULLSTACK_TEST_REPO: ProdTesting
secrets:
CI_USER_TOKEN: ${{ secrets.CI_USER_TOKEN }}
TRAVIS_COM_TOKEN: ${{ secrets.TRAVIS_COM_TOKEN }}
unit_tests:
runs-on: ubuntu-latest
strategy:
matrix:
ruby: [ '3.0.0', '3.1.0', '3.2.0', '3.3.0' ]
steps:
- uses: actions/checkout@v3
- name: Set up Ruby ${{ matrix.ruby }}
uses: ruby/setup-ruby@v1
with:
ruby-version: ${{ matrix.ruby }}
bundler-cache: true
- name: Install rubocop 1.78.0 for Ruby 3.0.0
if: matrix.ruby == '3.0.0'
run: |
echo "Installing rubocop 1.78.0 for Ruby 3.0.0"
bundle add rubocop --version 1.78.0 || true
bundle install
bundle exec rubocop -A Gemfile || true
- name: Run linting
run: |
bundle exec rubocop
- name: Run unit tests
run: |
bundle exec rake spec
- name: Run coveralls
run: |
bundle exec coveralls