mirror of
https://github.com/thegeeklab/drone-yaml.git
synced 2024-11-05 19:10:38 +00:00
12 lines
122 B
Go
12 lines
122 B
Go
|
package circleci
|
||
|
|
||
|
const testRun = `
|
||
|
- run:
|
||
|
name: test
|
||
|
command: go test
|
||
|
`
|
||
|
|
||
|
const testRunShort = `
|
||
|
- run: go test
|
||
|
`
|