2022-03-22 11:03:15 -04:00
|
|
|
name: Golangci-lint
|
|
|
|
|
|
|
|
on:
|
2022-07-20 04:48:01 -04:00
|
|
|
push:
|
|
|
|
branches:
|
|
|
|
- main
|
2022-09-03 11:47:47 -04:00
|
|
|
paths:
|
|
|
|
- "**.go"
|
2022-03-22 11:03:15 -04:00
|
|
|
pull_request:
|
2022-09-03 11:47:47 -04:00
|
|
|
paths:
|
|
|
|
- "**.go"
|
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
|
|
|
|
|
2022-06-30 05:27:23 -04:00
|
|
|
# Abort runs of *this* workflow, if a new commit with the same ref is pushed.
|
|
|
|
concurrency:
|
|
|
|
group: ${{ github.workflow }}-${{ github.ref }}
|
2022-08-03 10:01:36 -04:00
|
|
|
cancel-in-progress: ${{ github.ref != 'refs/heads/main' }}
|
2022-06-30 05:27:23 -04:00
|
|
|
|
2022-03-22 11:03:15 -04:00
|
|
|
jobs:
|
|
|
|
golangci:
|
|
|
|
name: lint
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
env:
|
|
|
|
GOPRIVATE: github.com/edgelesssys/*
|
|
|
|
steps:
|
2022-07-20 04:48:01 -04:00
|
|
|
- name: Checkout
|
|
|
|
uses: actions/checkout@2541b1294d2704b0964813337f33b291d3f8596b
|
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-08-24 05:59:35 -04:00
|
|
|
uses: actions/setup-go@268d8c0ca0432bb2cf416faae41297df9d262d7f
|
2022-07-20 04:48:01 -04:00
|
|
|
with:
|
2022-09-09 09:00:36 -04:00
|
|
|
go-version: "1.19.1"
|
2022-07-26 05:49:13 -04:00
|
|
|
cache: true
|
2022-07-20 04:48:01 -04:00
|
|
|
|
2022-03-22 11:03:15 -04:00
|
|
|
- name: golangci-lint
|
2022-07-20 04:48:01 -04:00
|
|
|
uses: golangci/golangci-lint-action@537aa1903e5d359d0b27dbc19ddd22c5087f3fbc
|
2022-08-29 03:31:48 -04:00
|
|
|
with:
|
|
|
|
skip-pkg-cache: true
|
|
|
|
skip-build-cache: true
|
2022-09-12 10:14:12 -04:00
|
|
|
working-directory: ./... ./hack/... ./operators/constellation-node-operator/...
|
2022-08-29 03:31:48 -04:00
|
|
|
args: --timeout=15m
|