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

65 lines
1.7 KiB
YAML
Raw Normal View History

2022-02-05 08:10:43 -08:00
1# 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:
- fast-dev
2022-02-05 08:10:43 -08:00
- fast-dev-gke
2021-10-26 17:03:38 -07:00
- 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 (fabric)
id: documentation-fabric
2021-10-26 17:03:38 -07:00
run: |
python3 tools/check_documentation.py examples modules fast
- name: Check documentation links (fabric)
id: documentation-links-fabric
run: |
python3 tools/check_links.py .