-
Notifications
You must be signed in to change notification settings - Fork 139
57 lines (50 loc) · 1.36 KB
/
test.yml
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
name: Test
concurrency:
group: ${{ github.ref }}
cancel-in-progress: true
on:
push:
branches: [ master ]
pull_request:
jobs:
test:
runs-on: ubuntu-latest
services:
rabbitmq:
image: rabbitmq:3-management
ports:
- 5672:5672
- 15672:15672
options: --name rabbitmq
strategy:
fail-fast: false
matrix:
ruby-version:
- 2.7
- 3.0
- 3.1
steps:
- uses: actions/checkout@v3
- name: Set up Ruby
# To automatically get bug fixes and new Ruby versions for ruby/setup-ruby,
# change this to (see https://github.com/ruby/setup-ruby#versioning):
uses: ruby/setup-ruby@v1
# uses: ruby/setup-ruby@473e4d8fe5dd94ee328fdfca9f8c9c7afc9dae5e
with:
ruby-version: ${{ matrix.ruby-version }}
bundler-cache: true # runs 'bundle install' and caches installed gems automatically
- name: Set up RabbitMQ
run: |
until sudo lsof -i:5672; do echo "Waiting for RabbitMQ to start..."; sleep 1; done
./bin/ci/before_build_docker.sh
- name: Run tests
run: bundle exec rspec spec
test_all:
if: ${{ always() }}
runs-on: ubuntu-latest
name: Test (matrix)
needs: test
steps:
- name: Check test matrix status
if: ${{ needs.test.result != 'success' }}
run: exit 1