add test step to ci
continuous-integration/drone/pr Build is failing Details

This commit is contained in:
Elizabeth 2024-04-02 16:32:03 -06:00
parent bcdcc508ef
commit 07c272b809
Signed by: simponic
GPG Key ID: 2909B9A7FF6213EE
1 changed files with 16 additions and 5 deletions

View File

@ -1,9 +1,15 @@
---
kind: pipeline
type: docker
name: build, publish docker image, deploy
name: deployment
steps:
- name: run tests
image: golang
commands:
- go build
- go test -v ./...
- name: docker
image: plugins/docker
settings:
@ -13,9 +19,10 @@ steps:
from_secret: gitea_packpub_password
registry: git.hatecomputers.club
repo: git.hatecomputers.club/hatecomputers/hatecomputers.club
tags:
- latest
- main
when:
branch:
- main
- name: ssh
image: appleboy/drone-ssh
settings:
@ -27,6 +34,10 @@ steps:
command_timeout: 2m
script:
- systemctl restart docker-compose@hatecomputers-club
when:
branch:
- main
trigger:
branch:
- main
- main