diff options
| author | Elizabeth Hunt <elizabeth@simponic.xyz> | 2024-04-02 20:26:24 -0600 |
|---|---|---|
| committer | Elizabeth Hunt <elizabeth@simponic.xyz> | 2024-04-02 20:26:24 -0600 |
| commit | 385d4a84eb813ce6f777b6ab10642ad447f93321 (patch) | |
| tree | 39ccac5de9aafe55dfa70e52d39ea78e534006a5 /.drone.yml | |
| parent | ce393a5ac1dedaa04a885b5400d66bcbbf794855 (diff) | |
| download | hatecomputers.club-385d4a84eb813ce6f777b6ab10642ad447f93321.tar.gz hatecomputers.club-385d4a84eb813ce6f777b6ab10642ad447f93321.zip | |
fix dns race condition
Diffstat (limited to '.drone.yml')
| -rw-r--r-- | .drone.yml | 7 |
1 files changed, 6 insertions, 1 deletions
@@ -12,7 +12,7 @@ steps: trigger: event: - - push + - pull_request --- kind: pipeline @@ -20,6 +20,11 @@ type: docker name: deploy steps: + - name: run tests + image: golang + commands: + - go build + - go test -p 1 -v ./... - name: docker image: plugins/docker settings: |
