cloud-foundation-fabric/.github/workflows/linting.yml

74 lines
1.9 KiB
YAML
Raw Normal View History

2022-01-01 06:52:31 -08:00
# Copyright 2022 Google LLC
2021-10-26 17:17:22 -07:00
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
name: "Linting"
on:
2021-10-26 17:03:38 -07:00
pull_request:
branches:
- master
2021-10-26 19:13:05 -07:00
tags:
- ci
- lint
2021-10-26 23:28:10 -07:00
2021-10-26 17:03:38 -07:00
jobs:
linting:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Set up Python
uses: actions/setup-python@v2
with:
python-version: "3.9"
2021-10-26 17:03:38 -07:00
2021-10-26 23:24:45 -07:00
- name: Set up Terraform
uses: hashicorp/setup-terraform@v1
with:
terraform_version: 1.0.9
2021-10-26 17:03:38 -07:00
- name: Install dependencies
2021-10-27 07:08:29 -07:00
run: |
2021-10-26 23:24:45 -07:00
pip install -r tools/REQUIREMENTS.txt
2021-10-26 17:03:38 -07:00
2021-10-26 19:23:33 -07:00
- name: Boilerplate
2021-10-26 17:03:38 -07:00
id: boilerplate
run: |
2021-10-26 17:13:26 -07:00
python3 tools/check_boilerplate.py $GITHUB_WORKSPACE
2021-10-26 17:03:38 -07:00
- name: Terraform Linting Check
id: fmt
run: |
2021-10-27 07:08:29 -07:00
terraform fmt -recursive -check -diff $GITHUB_WORKSPACE
2021-10-26 17:03:38 -07:00
- name: Check documentation
id: documentation
run: |
python3 tools/check_documentation.py \
cloud-operations \
data-solutions \
factories \
foundations \
modules \
networking
2022-01-10 12:44:51 -08:00
markdown-link-check:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@master
- uses: gaurav-nelson/github-action-markdown-link-check@v1
2022-01-11 01:45:29 -08:00
with:
use-quiet-mode: 'yes'
use-verbose-mode: 'yes'
config-file: '.github/workflows/markdown-link-check.json'