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