-
Notifications
You must be signed in to change notification settings - Fork 595
55 lines (55 loc) · 1.26 KB
/
ibis-backends-skip-helper.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
# This job intentionally collides with the Backend job in `ibis-backends.yml`
# that would be skipped because the paths are ignored. This is so the
# `Backends` job isn't stuck in "expected" forever when it should be skipped
name: Backends
on:
push:
paths:
- "docs/**"
- "**/*.md"
- "**/*.qmd"
- "codecov.yml"
- ".envrc"
- ".codespellrc"
branches:
- main
- "*.x.x"
pull_request:
paths:
- "docs/**"
- "**/*.md"
- "**/*.qmd"
- "codecov.yml"
- ".envrc"
- ".codespellrc"
branches:
- main
- "*.x.x"
merge_group:
jobs:
test_bigquery_lite:
runs-on: ubuntu-latest
steps:
- run: echo "No build required"
test_backends:
runs-on: ubuntu-latest
steps:
- run: echo "No build required"
test_backends_min_version:
runs-on: ubuntu-latest
steps:
- run: echo "No build required"
test_pyspark:
runs-on: ubuntu-latest
steps:
- run: echo "No build required"
backends:
# this job exists so that we can use a single job from this workflow to gate merging
runs-on: ubuntu-latest
needs:
- test_bigquery_lite
- test_backends_min_version
- test_backends
- test_pyspark
steps:
- run: exit 0