This repository has been archived by the owner on Sep 25, 2023. It is now read-only.
chore(deps): bump docker/metadata-action from 4 to 5 #36
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Lint | |
on: | |
push: | |
branches: | |
- main | |
pull_request: | |
workflow_dispatch: | |
jobs: | |
golangci-lint: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v4 | |
- name: Install Go | |
uses: actions/setup-go@v4 | |
with: | |
go-version: "1.19.x" | |
cache: true | |
- name: Lint | |
uses: golangci/[email protected] | |
with: | |
version: latest | |
args: --timeout 5m | |
skip-go-installation: true | |
skip-pkg-cache: true | |
skip-build-cache: true | |
# Check if there are any dirty changes after go mod tidy | |
check-mod: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v4 | |
- name: Install Go | |
uses: actions/setup-go@v4 | |
with: | |
go-version: "1.20.x" | |
cache: true | |
- name: Download dependencies | |
run: go mod download && go mod tidy | |
- name: Check git diff | |
run: git diff --exit-code |