-
Notifications
You must be signed in to change notification settings - Fork 1
42 lines (33 loc) · 1.04 KB
/
pre-commit.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
name: Pre-Commit
on:
pull_request:
workflow_dispatch:
push:
branches:
- main
env:
GOLANGCI_LINT_VERSION: "v1.52.1"
GOLANG_VERSION: "1.19.x"
TFUPDATE_VERSION: "v0.6.7"
jobs:
pre-commit:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/[email protected]
with:
fetch-depth: '0'
- name: Install Go
uses: actions/setup-go@v4
with:
go-version: ${{ env.GOLANG_VERSION }}
- name: Install required tools
run: |
curl -sSfL https://raw.githubusercontent.com/golangci/golangci-lint/master/install.sh | sh -s -- -b $HOME/.local/bin ${{ env.GOLANGCI_LINT_VERSION }}
golangci-lint --version
go install github.com/minamijoyo/tfupdate@${{ env.TFUPDATE_VERSION }}
tfupdate --version
- name: Enforce pre-commit checks
uses: pre-commit/[email protected]
with:
extra_args: --hook-stage push --from-ref origin/main --to-ref ${{ github.event.pull_request.head.sha || github.ref }}