mirror of
https://github.com/jangraefen/hcloud-pricing-exporter
synced 2024-11-10 05:54:15 +00:00
Fix golangci issue
This commit is contained in:
parent
7c7234fe8e
commit
074e0cd860
2 changed files with 6 additions and 0 deletions
4
.github/workflows/build.yaml
vendored
4
.github/workflows/build.yaml
vendored
|
@ -34,6 +34,10 @@ jobs:
|
|||
go-version: ^1.19
|
||||
- name: Checkout code
|
||||
uses: actions/checkout@v3
|
||||
- name: Get dependencies
|
||||
run: |
|
||||
export GO111MODULE=on
|
||||
go get -v -t -d ./...
|
||||
- name: golangci-lint
|
||||
uses: golangci/golangci-lint-action@v3
|
||||
with:
|
||||
|
|
2
go.mod
2
go.mod
|
@ -1,5 +1,7 @@
|
|||
module github.com/jangraefen/hcloud-pricing-exporter
|
||||
|
||||
go 1.19
|
||||
|
||||
require (
|
||||
github.com/hetznercloud/hcloud-go v1.38.0
|
||||
github.com/jtaczanowski/go-scheduler v0.1.0
|
||||
|
|
Loading…
Reference in a new issue