add .drone.yml #2

Merged
Kichiyaki merged 2 commits from ci-cd into master 2022-09-16 14:14:32 +00:00
2 changed files with 37 additions and 1 deletions

36
.drone.yml Normal file
View File

@ -0,0 +1,36 @@
---
kind: pipeline
type: docker
name: test
steps:
- name: test
image: golang:1.19
commands:
- go test -race -coverprofile=coverage.txt -covermode=atomic ./...
trigger:
event:
- push
- pull_request
branch:
- master
---
kind: pipeline
type: docker
name: check-go-mod
steps:
- name: check go.mod
image: golang:1.19
commands:
- go mod tidy
- git diff --exit-code go.mod
trigger:
event:
- push
- pull_request
branch:
- master

2
go.mod
View File

@ -1,6 +1,6 @@
module gitea.dwysokinski.me/Kichiyaki/chizap
go 1.17
go 1.18
require (
github.com/go-chi/chi/v5 v5.0.7