forked from google-ai-edge/model-explorer
-
Notifications
You must be signed in to change notification settings - Fork 0
42 lines (32 loc) · 815 Bytes
/
run_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
# Helpful YAML parser to clarify YAML syntax:
# https://yaml-online-parser.appspot.com/
name: Run CI
on:
push:
branches: ["main"]
paths:
- 'src/server/**'
- 'src/ui/**'
- '.github/workflows/**'
- 'ci/**'
pull_request:
branches: ["main"]
paths:
- 'src/server/**'
- 'src/ui/**'
- '.github/workflows/**'
- 'ci/**'
concurrency:
group: ${{ github.workflow }}-${{ github.ref || github.run_id }}
cancel-in-progress: true
jobs:
run-formatting:
name: Formatting
uses: ./.github/workflows/formatting.yml
with:
trigger-sha: ${{ github.event.pull_request.head.sha }}
run-tests:
name: Playwright Tests
uses: ./.github/workflows/playwright.yml
with:
trigger-sha: ${{ github.event.pull_request.head.sha }}