-
Notifications
You must be signed in to change notification settings - Fork 2
36 lines (30 loc) · 973 Bytes
/
analysis.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
name: Analysis
on:
push:
branches: [main]
pull_request:
types: [opened, reopened, synchronize, ready_for_review, converted_to_draft]
schedule:
- cron: "0 11 * * 0" # 3 AM PST = 12 PM UDT, runs sundays
workflow_dispatch:
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
jobs:
tests-java:
name: Backend Tests
if: github.event_name != 'pull_request' || !github.event.pull_request.draft
uses: ./.github/workflows/reusable-tests-be.yml
tests-frontend:
name: Frontend Unit Tests
if: github.event_name != 'pull_request' || !github.event.pull_request.draft
uses: ./.github/workflows/reusable-tests-fe.yml
repo-reports:
name: Repository Reports
uses: ./.github/workflows/reusable-tests-repo.yml
results:
name: Analysis Results
needs: [tests-java, tests-frontend, repo-reports]
runs-on: ubuntu-24.04
steps:
- run: echo "Workflow completed successfully!"