summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSviatoslav Sydorenko <wk@sydorenko.org.ua>2023-01-05 04:39:55 +0100
committerSviatoslav Sydorenko <wk@sydorenko.org.ua>2023-01-05 05:18:34 +0100
commitabe6a12fdf5b48e6e086177b023f09073a52b4a5 (patch)
tree9d8eac89b169507093ee26a4bbe13d9c90ef309d
parent02ed51b88c5a6266de63afcbd1e899931f952e84 (diff)
downloadcherrypy-git-abe6a12fdf5b48e6e086177b023f09073a52b4a5.tar.gz
🎨 Ensure start/stop is present in YAML
-rw-r--r--.appveyor.yml4
-rw-r--r--.circleci/config.yml4
-rw-r--r--.codecov.yml4
-rw-r--r--.github/FUNDING.yml3
-rw-r--r--.github/config.yml4
-rw-r--r--.pre-commit-config-pep257.yaml4
-rw-r--r--.pre-commit-config.yaml4
-rw-r--r--.readthedocs.yml4
-rw-r--r--.travis.yml4
-rw-r--r--.yamllint4
10 files changed, 39 insertions, 0 deletions
diff --git a/.appveyor.yml b/.appveyor.yml
index 08d7ba84..3f4aa9bd 100644
--- a/.appveyor.yml
+++ b/.appveyor.yml
@@ -1,3 +1,5 @@
+---
+
environment:
matrix:
- PYTHON: "C:\\Python37-x64"
@@ -46,3 +48,5 @@ on_finish:
artifacts:
- path: dist\*
+
+...
diff --git a/.circleci/config.yml b/.circleci/config.yml
index 4f6da680..4ef33d1a 100644
--- a/.circleci/config.yml
+++ b/.circleci/config.yml
@@ -1,3 +1,5 @@
+---
+
version: 2
jobs:
macos-build:
@@ -50,3 +52,5 @@ workflows:
jobs:
- macos-build
- linux-build
+
+...
diff --git a/.codecov.yml b/.codecov.yml
index 9fff0529..0c2c6af5 100644
--- a/.codecov.yml
+++ b/.codecov.yml
@@ -1,3 +1,5 @@
+---
+
codecov:
bot: codecov
notify:
@@ -26,3 +28,5 @@ comment:
layout: "header, diff"
behavior: default
require_changes: no
+
+...
diff --git a/.github/FUNDING.yml b/.github/FUNDING.yml
index 6955eab7..088d304d 100644
--- a/.github/FUNDING.yml
+++ b/.github/FUNDING.yml
@@ -1,3 +1,4 @@
+---
# These are supported funding model platforms
github: # Replace with up to 4 GitHub Sponsors-enabled usernames e.g., [user1, user2]
@@ -12,3 +13,5 @@ tidelift: pypi/CherryPy # A single Tidelift platform-name/package-name e.g., np
# issuehunt: # Replace with a single IssueHunt username
# otechie: # Replace with a single Otechie username
# custom: # Replace with up to 4 custom sponsorship URLs e.g., ['link1', 'link2']
+
+...
diff --git a/.github/config.yml b/.github/config.yml
index 390de12b..20b4d117 100644
--- a/.github/config.yml
+++ b/.github/config.yml
@@ -1,2 +1,6 @@
+---
+
rtd:
project: cherrypy
+
+...
diff --git a/.pre-commit-config-pep257.yaml b/.pre-commit-config-pep257.yaml
index 86bf61ec..d9cb0f42 100644
--- a/.pre-commit-config-pep257.yaml
+++ b/.pre-commit-config-pep257.yaml
@@ -1,5 +1,9 @@
+---
+
repos:
- repo: git://github.com/chewse/pre-commit-mirrors-pydocstyle
rev: v2.1.1
hooks:
- id: pydocstyle
+
+...
diff --git a/.pre-commit-config.yaml b/.pre-commit-config.yaml
index 0c75d0b0..8562415d 100644
--- a/.pre-commit-config.yaml
+++ b/.pre-commit-config.yaml
@@ -1,3 +1,5 @@
+---
+
repos:
- repo: https://github.com/pre-commit/pre-commit-hooks.git
rev: v1.1.1
@@ -68,3 +70,5 @@ repos:
types: [file, yaml]
args:
- --strict
+
+...
diff --git a/.readthedocs.yml b/.readthedocs.yml
index 3eb1a2b4..bdcbf47d 100644
--- a/.readthedocs.yml
+++ b/.readthedocs.yml
@@ -1,3 +1,5 @@
+---
+
build:
image: latest
python:
@@ -6,3 +8,5 @@ python:
- docs
- testing
pip_install: true
+
+...
diff --git a/.travis.yml b/.travis.yml
index b0b0c60d..a94ab7c3 100644
--- a/.travis.yml
+++ b/.travis.yml
@@ -1,3 +1,5 @@
+---
+
conditions: v1
language: python
@@ -167,3 +169,5 @@ stages:
<<: *condition_api_or_cron
- name: *stage_deploy_name
if: tag IS present
+
+...
diff --git a/.yamllint b/.yamllint
index 434c9f9b..98784d28 100644
--- a/.yamllint
+++ b/.yamllint
@@ -1,4 +1,8 @@
+---
+
rules:
indentation:
level: error
indent-sequences: false
+
+...