We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e12cb2b commit f6351faCopy full SHA for f6351fa
.github/workflows/ci.yaml
@@ -9,11 +9,12 @@ on:
9
- "main"
10
- "backend-indexing"
11
paths:
12
- - 'ci/**'
13
- - '.github/**'
14
- - '/*' # covers files such as `pyproject.toml`
15
- - 'properties/**'
16
- - 'xarray/**'
+ - "ci/**"
+ - ".github/**"
+ - "/*" # covers files such as `pyproject.toml`
+ - "/.*" # ...and dotfiles in the root such as `.pre-commit-config.yaml`
+ - "properties/**"
17
+ - "xarray/**"
18
workflow_dispatch: # allows you to trigger manually
19
20
concurrency:
@@ -55,7 +56,7 @@ jobs:
55
56
matrix:
57
os: ["ubuntu-latest", "macos-latest", "windows-latest"]
58
# Bookend python versions
- python-version: ["3.9", "3.12"]
59
+ python-version: ["3.9", "3.12"]
60
env: [""]
61
include:
62
# Minimum python version:
0 commit comments