Skip to content

Commit 9b9a9c0

Browse files
sweep yaml
1 parent 2b199f3 commit 9b9a9c0

File tree

1 file changed

+23
-0
lines changed

1 file changed

+23
-0
lines changed

sweep.yaml

Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
gha_enabled: True
2+
branch: "main"
3+
blocked_dirs: [".github/"]
4+
draft: False
5+
description: "time-series-machine-learning/tsml is a Python project for time series machine learning algorithms following the scikit-learn interface. Write code that adheres to PEP8 and is formatted to the Black code style. The projects documentation is built using Sphinx and MyST, and unit testing is done using pytest."
6+
7+
docs:
8+
scikit-learn: ["https://scikit-learn.org/stable/", "Estimator algorithms from scikit-learn are one of the options available in our experiment functions."]
9+
sklearn: ["https://scikit-learn.org/stable/", "Estimator algorithms from scikit-learn are one of the options available in our experiment functions."]
10+
numpy: ["https://numpy.org/doc/stable/", "We use numpy as a data container and for mathematical operations."]
11+
numba: ["https://numba.readthedocs.io/en/stable/", "We use numba to speed up functions where possible."]
12+
sphinx: ["https://www.sphinx-doc.org/en/master/", "We use sphinx to generate our documentation."]
13+
myst: ["https://myst-parser.readthedocs.io/en/stable/", "We use myst to write our documentation in markdown."]
14+
pytest: ["https://docs.pytest.org/en/stable/", "We use pytest for unit testing."]
15+
16+
sandbox:
17+
install:
18+
- pre-commit install
19+
check:
20+
- git add . && pre-commit run --files {file_path} || exit 0
21+
22+
rules:
23+
- ""

0 commit comments

Comments
 (0)