From 271c4e8a71be5d7628d42852a8303cc7aebb07b6 Mon Sep 17 00:00:00 2001 From: Marc Bihlmaier Date: Wed, 7 Apr 2021 20:18:51 +0200 Subject: [PATCH] fix indents --- .github/workflows/ci.yml | 34 +++++++++++++++++----------------- 1 file changed, 17 insertions(+), 17 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 4d0fe55..4f05d17 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -14,26 +14,26 @@ defaults: jobs: - lint: - name: Lint - runs-on: ubuntu-latest - steps: - - name: Check out the codebase. - uses: actions/checkout@v2 - with: - path: 'geerlingguy.kubernetes' + lint: + name: Lint + runs-on: ubuntu-latest + steps: + - name: Check out the codebase. + uses: actions/checkout@v2 + with: + path: 'geerlingguy.kubernetes' - - name: Set up Python 3. - uses: actions/setup-python@v2 - with: - python-version: '3.x' + - name: Set up Python 3. + uses: actions/setup-python@v2 + with: + python-version: '3.x' - - name: Install test dependencies. - run: pip3 install yamllint + - name: Install test dependencies. + run: pip3 install yamllint - - name: Lint code. - run: | - yamllint . + - name: Lint code. + run: | + yamllint . molecule: name: Molecule