forked from sqldelight/sqldelight
-
Notifications
You must be signed in to change notification settings - Fork 0
40 lines (35 loc) · 1.13 KB
/
PR-skip.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
# Matches paths that are skipped by PR.yml, to ensure that CI isn't constantly pending.
# See https://docs.github.com/en/repositories/configuring-branches-and-merges-in-your-repository/managing-protected-branches/troubleshooting-required-status-checks#handling-skipped-but-required-checks
name: Test
on:
pull_request:
# Ensure paths match paths-ignore in PR.yml
paths:
- 'docs/**'
- '*.md'
- 'mkdocs.yml'
jobs:
build:
strategy:
matrix:
os: [ macOS-latest, windows-latest, ubuntu-latest ]
job: [ instrumentation, test, gradle-plugin-tests ]
exclude:
- os: windows-latest
job: instrumentation
- os: windows-latest
job: gradle-plugin-tests
- os: ubuntu-latest
job: gradle-plugin-tests
# We don't actually need to run on `{{matrix.os}}` for this to work
runs-on: ubuntu-latest
steps:
- run: 'echo "No build required"'
spotless:
runs-on: ubuntu-latest
steps:
- run: 'echo "No build required"'
verify_intellij_check:
runs-on: ubuntu-latest
steps:
- run: 'echo "No build required"'