forked from ibis-project/ibis
-
Notifications
You must be signed in to change notification settings - Fork 0
45 lines (43 loc) · 938 Bytes
/
nix-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
# This job intentionally collides with the Nix job in `nix.yml`
# that would be skipped because the paths are ignored. This is so the `Nix`
# job isn't stuck in "expected" forever when it should be skipped
name: Nix
on:
push:
paths:
- "docs/**"
- "**/*.md"
- "**/*.qmd"
- ".envrc"
branches:
- main
- "*.x.x"
pull_request:
paths:
- "docs/**"
- "**/*.md"
- "**/*.qmd"
- ".envrc"
branches:
- main
- "*.x.x"
merge_group:
jobs:
nix:
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
os:
- ubuntu-latest # x86_64-linux
python-version:
- "3.10"
- "3.11"
- "3.12"
include:
- os: ubuntu-arm64-24.04
python-version: "3.12"
- os: macos-14
python-version: "3.10"
steps:
- run: echo "No build required"