Compare commits
3 commits
Author | SHA1 | Date | |
---|---|---|---|
fd320d9ec3 | |||
6dbc5784df | |||
8c2797cc82 |
3 changed files with 28 additions and 11 deletions
31
.drone.yml
31
.drone.yml
|
@ -5,11 +5,15 @@ name: test
|
|||
steps:
|
||||
- name: test-code
|
||||
image: golang
|
||||
environment:
|
||||
commands:
|
||||
- go get
|
||||
- go test
|
||||
- go get
|
||||
- go test
|
||||
|
||||
- name: run-code
|
||||
image: golang
|
||||
commands:
|
||||
- go get
|
||||
- go run .
|
||||
---
|
||||
kind: pipeline
|
||||
name: test-build
|
||||
|
@ -143,6 +147,21 @@ steps:
|
|||
depends_on:
|
||||
- prepare
|
||||
|
||||
- name: generate-checksum
|
||||
image: golang
|
||||
commands:
|
||||
- cd bin
|
||||
- md5sum * > ../md5sums.txt
|
||||
- sha512sum * > ../sha512sums.txt
|
||||
- cp ../md5sums.txt .
|
||||
- cp ../sha512sums.txt .
|
||||
depends_on:
|
||||
- build-linux-amd64
|
||||
- build-darwin-amd64
|
||||
- build-windows-amd64
|
||||
- build-linux-arm64
|
||||
- build-darwin-arm64
|
||||
|
||||
- name: gitea_release
|
||||
image: plugins/gitea-release
|
||||
settings:
|
||||
|
@ -154,11 +173,7 @@ steps:
|
|||
base_url: https://scm.project42.io
|
||||
files: bin/*
|
||||
depends_on:
|
||||
- build-linux-amd64
|
||||
- build-darwin-amd64
|
||||
- build-windows-amd64
|
||||
- build-linux-arm64
|
||||
- build-darwin-arm64
|
||||
- generate-checksum
|
||||
|
||||
depends_on:
|
||||
- test-build
|
||||
|
|
5
main.go
5
main.go
|
@ -3,7 +3,6 @@ package main
|
|||
import (
|
||||
"fmt"
|
||||
"io"
|
||||
"io/ioutil"
|
||||
"log"
|
||||
"net/http"
|
||||
"os"
|
||||
|
@ -15,7 +14,7 @@ import (
|
|||
)
|
||||
|
||||
// VERSION The version release
|
||||
const VERSION = "0.1.4"
|
||||
const VERSION = "0.1.5"
|
||||
|
||||
// AUTHOR The author name
|
||||
const AUTHOR = "Elia el Lazkani"
|
||||
|
@ -72,7 +71,7 @@ func (w weather) get(req *http.Request, download bool) {
|
|||
|
||||
// `weather` method to print the weather
|
||||
func (w weather) print(resp *http.Response) {
|
||||
body, err := ioutil.ReadAll(resp.Body)
|
||||
body, err := io.ReadAll(resp.Body)
|
||||
if err != nil {
|
||||
log.Fatal("Error reading body. ", err)
|
||||
}
|
||||
|
|
3
renovate.json
Normal file
3
renovate.json
Normal file
|
@ -0,0 +1,3 @@
|
|||
{
|
||||
"$schema": "https://docs.renovatebot.com/renovate-schema.json"
|
||||
}
|
Loading…
Add table
Reference in a new issue