-
Notifications
You must be signed in to change notification settings - Fork 47
45 lines (43 loc) · 1.35 KB
/
ci.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
name: "🚅 CI"
on:
pull_request:
types: [opened, synchronize, reopened]
push:
branches: [ "main" ]
jobs:
minitest:
name: 🧪 Starter Repo Minitest
uses: ./.github/workflows/_starter_repo_tests.yml
secrets: inherit
super_scaffolding:
name: 🏗️ Starter Repo Super Scaffolding Tests
uses: ./.github/workflows/_run_super_scaffolding_tests.yml
secrets: inherit
gem_tests:
name: 💎 Gem Tests
uses: ./.github/workflows/_run_tests.yml
secrets: inherit
standardrb:
name: 🔬 Standardrb
uses: ./.github/workflows/_standardrb.yml
secrets: inherit
combine_runtime_logs:
name: 🪵 Combine Runtime Logs
uses: ./.github/workflows/_combine_runtime_logs.yml
secrets: inherit
# NOTE: This one really only _needs_ minitest, but we include the others
# so that the workflow visualization layous out a little better.
needs: [minitest,super_scaffolding,gem_tests]
if: ${{ always() }}
combine_coverage_data:
name: ♻️ SimpleCov
uses: ./.github/workflows/_combine_coverage_data.yml
secrets: inherit
needs: [minitest,super_scaffolding,gem_tests]
if: ${{ always() }}
combine_summary_logs:
name: 📊 Test Results
uses: ./.github/workflows/_combine_summary_logs.yml
secrets: inherit
needs: [minitest,super_scaffolding,gem_tests]
if: ${{ always() }}