Fix golangci issue

This commit is contained in:
Jan Graefen 2022-12-14 14:45:48 +01:00
parent 7c7234fe8e
commit 074e0cd860
2 changed files with 6 additions and 0 deletions

View file

@ -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
View file

@ -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