From e620266198802e6bfb499413fcb2388c117afa0d Mon Sep 17 00:00:00 2001 From: Marc Bihlmaier Date: Wed, 7 Apr 2021 20:16:45 +0200 Subject: [PATCH] add yamllint again --- .github/workflows/ci.yml | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 21b2983..4d0fe55 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -14,6 +14,27 @@ defaults: jobs: + 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: Install test dependencies. + run: pip3 install yamllint + + - name: Lint code. + run: | + yamllint . + molecule: name: Molecule runs-on: ubuntu-latest