2022-03-22 11:03:15 -04:00
|
|
|
name: Golangci-lint
|
|
|
|
|
|
|
|
on:
|
2022-10-12 04:50:06 -04:00
|
|
|
workflow_dispatch:
|
2022-07-20 04:48:01 -04:00
|
|
|
push:
|
|
|
|
branches:
|
|
|
|
- main
|
2022-10-18 10:17:41 -04:00
|
|
|
- "release/**"
|
2022-09-03 11:47:47 -04:00
|
|
|
paths:
|
|
|
|
- "**.go"
|
2022-10-14 04:27:49 -04:00
|
|
|
- "**/go.mod"
|
|
|
|
- "**/go.sum"
|
2022-03-22 11:03:15 -04:00
|
|
|
pull_request:
|
2022-09-03 11:47:47 -04:00
|
|
|
paths:
|
|
|
|
- "**.go"
|
2022-10-14 04:27:49 -04:00
|
|
|
- "**/go.mod"
|
|
|
|
- "**/go.sum"
|
2022-03-22 11:03:15 -04:00
|
|
|
|
|
|
|
permissions:
|
|
|
|
contents: read
|
|
|
|
# Allow read access to pull request. Use with `only-new-issues` option.
|
|
|
|
pull-requests: read
|
|
|
|
|
|
|
|
jobs:
|
|
|
|
golangci:
|
|
|
|
name: lint
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
2022-07-20 04:48:01 -04:00
|
|
|
- name: Checkout
|
2022-10-12 12:05:58 -04:00
|
|
|
uses: actions/checkout@93ea575cb5d8a053eaa0ac8fa3b40d7e05a33cc8 # tag=v3.1.0
|
2022-09-19 04:59:46 -04:00
|
|
|
with:
|
2022-10-19 04:32:22 -04:00
|
|
|
ref: ${{ github.head_ref }}
|
2022-03-22 11:03:15 -04:00
|
|
|
|
2022-03-23 06:00:07 -04:00
|
|
|
- name: Install Dependencies
|
2022-09-12 10:14:12 -04:00
|
|
|
run: sudo apt-get update && sudo apt-get -y install libcryptsetup-dev libvirt-dev
|
2022-03-23 06:00:07 -04:00
|
|
|
|
2022-07-20 04:48:01 -04:00
|
|
|
- name: Setup Go environment
|
2022-10-18 07:54:53 -04:00
|
|
|
uses: actions/setup-go@c4a742cab115ed795e34d4513e2cf7d472deb55f # tag=v3.3.1
|
2022-07-20 04:48:01 -04:00
|
|
|
with:
|
2022-11-02 06:17:29 -04:00
|
|
|
go-version: "1.19.3"
|
2022-07-26 05:49:13 -04:00
|
|
|
cache: true
|
2022-07-20 04:48:01 -04:00
|
|
|
|
2022-09-12 11:37:07 -04:00
|
|
|
- name: Get Go submodules
|
|
|
|
id: submods
|
|
|
|
shell: bash
|
|
|
|
run: |
|
|
|
|
mods=$(go list -f '{{.Dir}}/...' -m | xargs)
|
|
|
|
echo "Found mods: $mods"
|
2022-10-12 05:43:32 -04:00
|
|
|
echo "submods=${mods}" >> $GITHUB_OUTPUT
|
2022-09-12 11:37:07 -04:00
|
|
|
|
2022-03-22 11:03:15 -04:00
|
|
|
- name: golangci-lint
|
2022-10-21 05:10:08 -04:00
|
|
|
uses: golangci/golangci-lint-action@07db5389c99593f11ad7b44463c2d4233066a9b1 # tag=v3.3.0
|
2022-08-29 03:31:48 -04:00
|
|
|
with:
|
|
|
|
skip-pkg-cache: true
|
|
|
|
skip-build-cache: true
|
2022-09-12 11:37:07 -04:00
|
|
|
args: --timeout=15m ${{ steps.submods.outputs.submods }}
|