Skip to content

Commit cf02126

Browse files
author
Ayaz Salikhov
committed
Fix yaml files codestyle
1 parent c094bb7 commit cf02126

File tree

6 files changed

+36
-29
lines changed

6 files changed

+36
-29
lines changed

.hadolint.yaml

+1
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
---
12
ignored:
23
- DL3006
34
- DL3008

.readthedocs.yml

+1
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
---
12
# .readthedocs.yml
23
# Read the Docs configuration file
34
# See https://docs.readthedocs.io/en/stable/config-file/v2.html for details

.travis.yml

+27-25
Original file line numberDiff line numberDiff line change
@@ -1,46 +1,48 @@
1+
---
12
dist: bionic
23
language: python
34
python:
4-
- 3.7
5+
- 3.7
56
sudo: required
67
services:
7-
- docker
8+
- docker
89

910
jobs:
10-
include:
11+
include:
1112
- stage: diff-test
1213
install:
13-
- pip install --upgrade pip
14-
- make dev-env
15-
- make lint-install
14+
- pip install --upgrade pip
15+
- make dev-env
16+
- make lint-install
1617
script:
17-
- set -e
18-
- if [ $(make n-docs-diff) -ne 0 ]; then make docs; fi;
19-
- if [ $(make n-other-diff) -ne 0 ]; then make lint-build-test-all DARGS="--build-arg TEST_ONLY_BUILD=1"; fi;
18+
- set -e
19+
- if [ $(make n-docs-diff) -ne 0 ]; then make docs; fi;
20+
- if [ $(make n-other-diff) -ne 0 ]; then make lint-build-test-all DARGS="--build-arg TEST_ONLY_BUILD=1"; fi;
2021
- stage: push-tx
2122
install:
22-
- pip install --upgrade pip
23-
- make dev-env
24-
script:
25-
- if [ $(make n-docs-diff DIFF_RANGE=$TRAVIS_COMMIT_RANGE) -ne 0 ]; then make tx-en; fi;
23+
- pip install --upgrade pip
24+
- make dev-env
25+
script:
26+
- if [ $(make n-docs-diff DIFF_RANGE=$TRAVIS_COMMIT_RANGE) -ne 0 ]; then make tx-en; fi;
2627
- stage: full-test
2728
install:
28-
- pip install --upgrade pip
29-
- make dev-env
30-
- make lint-install
29+
- pip install --upgrade pip
30+
- make dev-env
31+
- make lint-install
3132
script:
32-
- set -e
33-
- make docs
34-
- make lint-build-test-all DARGS="--build-arg TEST_ONLY_BUILD=1"
33+
- set -e
34+
- make docs
35+
- make lint-build-test-all DARGS="--build-arg TEST_ONLY_BUILD=1"
3536

3637
stages:
37-
- name: diff-test
38-
if: type = pull_request
39-
- name: push-tx
40-
if: type = push AND branch = master
41-
- name: full-test
42-
if: type = cron AND branch = master
38+
- name: diff-test
39+
if: type = pull_request
40+
- name: push-tx
41+
if: type = push AND branch = master
42+
- name: full-test
43+
if: type = cron AND branch = master
4344

4445
env:
4546
global:
47+
# yamllint disable-line
4648
secure: JDQKgB1laaenzmEGI9gduwK/iS0030qsl62njJg3jib0R8wxBi2OeetEdoGl9m4NFsqqnp0OO7nm4rzGfuwjL1A38flSlXOTxhjm/hvo3vmnqVu5lDcdk9+IRkafnfd3Dyd86tLxRVETOqZwCLmdNkB2fmQII8du5IIqbJuUGp8DrG7kVMf3NBr9rjkZRfByQrgG4s1NXuT61VvpWMPJAOhcrImuHBheVJDEV0U3n6Xavd7Wo+pAHrHU8exvYTZ1IzZMbHc6K0iC/NpCHcH9+9DAeLDk/q1aDNqbTExnQevOHZzNqgHC2qFOlN4jfy/TLYLpLXtUismneBBqVSK3iZso3Vqy2BRXWgouI+Tt+08ffocy9XPwEzSwkgPgDlFVUikPOy5imwjpDb13RMIyMY4CKlSOdQx2rH2kPkZ0MJJPcki3KGuGl3qRvqyblMn+lZvjAu6WVLZfo7EtcxsQ0ZZxbAbGoUVl27FHg+UvIfC0I3wEcZIp7oED47Q8s0MdCijD3AwkRPvx/iyp3J0A42su7kkOooFcmUItEIqegQJ4Aki1FBv2i5vHmBobClktytZceLsKvzCeLjMpL9HcUVfUaJDKRwtUYIozpYeBnac+E6J1s6glcqLrXIHWez8N6SzokBa6SPqdtODdzzk5OJupByub6CYWsRXvxIQ7/wI=

examples/docker-compose/notebook/letsencrypt-notebook.yml

+3-2
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
---
12
# Copyright (c) Jupyter Development Team.
23
# Distributed under the terms of the Modified BSD License.
34

@@ -9,8 +10,8 @@ services:
910
image: my-notebook
1011
container_name: ${NAME}
1112
volumes:
12-
- "work:/home/jovyan/work"
13-
- "secrets:/etc/letsencrypt"
13+
- "work:/home/jovyan/work"
14+
- "secrets:/etc/letsencrypt"
1415
ports:
1516
- "${PORT}:8888"
1617
environment:

examples/docker-compose/notebook/notebook.yml

+2-1
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
---
12
# Copyright (c) Jupyter Development Team.
23
# Distributed under the terms of the Modified BSD License.
34

@@ -9,7 +10,7 @@ services:
910
image: my-notebook
1011
container_name: ${NAME}
1112
volumes:
12-
- "work:/home/jovyan/work"
13+
- "work:/home/jovyan/work"
1314
ports:
1415
- "${PORT}:8888"
1516

examples/docker-compose/notebook/secure-notebook.yml

+2-1
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
---
12
# Copyright (c) Jupyter Development Team.
23
# Distributed under the terms of the Modified BSD License.
34

@@ -9,7 +10,7 @@ services:
910
image: my-notebook
1011
container_name: ${NAME}
1112
volumes:
12-
- "work:/home/jovyan/work"
13+
- "work:/home/jovyan/work"
1314
ports:
1415
- "${PORT}:8888"
1516
environment:

0 commit comments

Comments
 (0)