-
-
Notifications
You must be signed in to change notification settings - Fork 512
75 lines (64 loc) · 1.81 KB
/
tests.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
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
name: Tests & CodeCov
on:
workflow_dispatch:
push:
branches:
- master
- \d+-\d+
pull_request:
concurrency:
group: tests-${{ github.head_ref || github.run_id }}
cancel-in-progress: true
jobs:
ruby-versions:
uses: ruby/actions/.github/workflows/ruby_versions.yml@6d15c16f6259d657961bcdccf2598d3d53e90635
with:
engine: cruby-jruby
min_version: 2.7
delayed_job-tests:
needs: ruby-versions
uses: ./.github/workflows/sentry_delayed_job_test.yml
with:
versions: ${{ needs.ruby-versions.outputs.versions }}
opentelemetry-tests:
needs: ruby-versions
uses: ./.github/workflows/sentry_opentelemetry_test.yml
with:
versions: ${{ needs.ruby-versions.outputs.versions }}
rails-tests:
needs: ruby-versions
uses: ./.github/workflows/sentry_rails_test.yml
with:
versions: ${{ needs.ruby-versions.outputs.versions }}
resque-tests:
needs: ruby-versions
uses: ./.github/workflows/sentry_resque_test.yml
with:
versions: ${{ needs.ruby-versions.outputs.versions }}
ruby-tests:
needs: ruby-versions
uses: ./.github/workflows/sentry_ruby_test.yml
with:
versions: ${{ needs.ruby-versions.outputs.versions }}
sidekiq-tests:
needs: ruby-versions
uses: ./.github/workflows/sentry_sidekiq_test.yml
with:
versions: ${{ needs.ruby-versions.outputs.versions }}
codecov:
name: CodeCov
runs-on: ubuntu-latest
needs:
- ruby-tests
- rails-tests
- sidekiq-tests
- delayed_job-tests
- resque-tests
- opentelemetry-tests
steps:
- uses: actions/checkout@v4
- name: Codecov
uses: codecov/codecov-action@13ce06bfc6bbe3ecf90edbbf1bc32fe5978ca1d3
with:
run_command: send-notifications
token: ${{ secrets.CODECOV_TOKEN }}