Chip-8_Go/.drone.yml

15 lines
202 B
YAML

kind: pipeline
type: docker
name: default
steps:
- name : test
image: golang:latest
commands:
- go test -v ./chip8
- name : build
image: golang:latest
commands:
- go build ./cmd/test_prog