tflint-ruleset-azurerm-ext/.github/workflows/lint.yaml

31 строка
835 B
YAML

name: lint
on:
push:
tags:
- v*
branches:
- master
- main
pull_request:
permissions:
contents: read
# Optional: allow read access to pull request. Use with `only-new-issues` option.
# pull-requests: read
jobs:
lint:
name: lint
runs-on: ubuntu-latest
steps:
- name: Set up Go
uses: actions/setup-go@v3
with:
go-version: 1.18
- uses: actions/checkout@v3
- name: golangci-lint
run: |
make prepare
docker run --rm -v $(pwd):/src -w /src golangci/golangci-lint golangci-lint run --timeout 1h --skip-dirs integration --skip-dirs terraform-provider-azurerm -v ./...
- name: Run Gosec Security Scanner
uses: securego/gosec@master
with:
args: '-exclude-dir=terraform-provider-azurerm ./...'