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 eda322a commit 1f3bc7eCopy full SHA for 1f3bc7e
.github/workflows/ci.yaml
@@ -7,11 +7,12 @@ on:
7
branches:
8
- "main"
9
paths:
10
- - 'ci/**'
11
- - '.github/**'
12
- - '/*' # covers files such as `pyproject.toml`
13
- - 'properties/**'
14
- - 'xarray/**'
+ - "ci/**"
+ - ".github/**"
+ - "/*" # covers files such as `pyproject.toml`
+ - "/.*" # ...and dotfiles in the root such as `.pre-commit-config.yaml`
+ - "properties/**"
15
+ - "xarray/**"
16
workflow_dispatch: # allows you to trigger manually
17
18
concurrency:
@@ -53,7 +54,7 @@ jobs:
53
54
matrix:
55
os: ["ubuntu-latest", "macos-latest", "windows-latest"]
56
# Bookend python versions
- python-version: ["3.9", "3.12"]
57
+ python-version: ["3.9", "3.12"]
58
env: [""]
59
include:
60
# Minimum python version:
0 commit comments