-
Notifications
You must be signed in to change notification settings - Fork 290
70 lines (62 loc) · 1.75 KB
/
specs.yml
File metadata and controls
70 lines (62 loc) · 1.75 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
name: Specs
on:
- push
- pull_request
permissions:
contents: read
jobs:
specs:
name: Specs
strategy:
matrix:
ruby: ['3.2', '3.3', '3.4']
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@8e8c483db84b4bee98b60c0593521ed34d9990e8 # v6.0.1
- uses: ruby/setup-ruby@8aeb6ff8030dd539317f8e1769a044873b56ea71 # v1.268.0
with:
ruby-version: ${{ matrix.ruby }}
bundler-cache: true
- name: Run specs
run: bundle exec rake spec
integrations:
name: Integrations
strategy:
matrix:
ruby: ['3.2', '3.3', '3.4']
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@8e8c483db84b4bee98b60c0593521ed34d9990e8 # v6.0.1
- name: Start LocalStack
run: docker compose up -d
- name: Wait for LocalStack
run: |
timeout 30s bash -c '
until curl -s http://localhost:4566/_localstack/health | grep -q "\"sqs\": \"available\""; do
echo "Waiting for LocalStack..."
sleep 2
done
'
- uses: ruby/setup-ruby@8aeb6ff8030dd539317f8e1769a044873b56ea71 # v1.268.0
with:
ruby-version: ${{ matrix.ruby }}
bundler-cache: true
- name: Run integration specs
run: bundle exec rake spec:integration
ci-success:
name: CI Success
runs-on: ubuntu-latest
if: always()
needs:
- specs
- integrations
steps:
- name: Check all jobs passed
if: |
contains(needs.*.result, 'failure') ||
contains(needs.*.result, 'cancelled') ||
contains(needs.*.result, 'skipped')
run: exit 1
- run: echo "All CI checks passed!"