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"
|
2023-02-14 14:01:00 -05:00
|
|
|
- ".github/workflows/test-lint.yml"
|
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"
|
2023-02-14 14:01:00 -05:00
|
|
|
- ".github/workflows/test-lint.yml"
|
2022-03-22 11:03:15 -04:00
|
|
|
|
|
|
|
jobs:
|
|
|
|
golangci:
|
|
|
|
name: lint
|
2022-11-10 10:55:24 -05:00
|
|
|
runs-on: ubuntu-22.04
|
2022-03-22 11:03:15 -04:00
|
|
|
steps:
|
2022-07-20 04:48:01 -04:00
|
|
|
- name: Checkout
|
2023-03-22 12:57:47 -04:00
|
|
|
uses: actions/checkout@24cb9080177205b6e8c946b17badbe402adc938f # v3.4.0
|
2022-09-19 04:59:46 -04:00
|
|
|
with:
|
2022-12-19 09:21:28 -05:00
|
|
|
ref: ${{ !github.event.pull_request.head.repo.fork && 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-12-14 08:55:14 -05:00
|
|
|
uses: actions/setup-go@6edd4406fa81c3da01a34fa6f6343087c207a568 # v3.5.0
|
2022-07-20 04:48:01 -04:00
|
|
|
with:
|
2023-03-08 04:05:36 -05:00
|
|
|
go-version: "1.20.2"
|
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-11-11 08:49:16 -05: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
|
2023-01-26 09:22:33 -05:00
|
|
|
uses: golangci/golangci-lint-action@08e2f20817b15149a52b5b3ebe7de50aff2ba8c5 # v3.4.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 }}
|