Added base project & start of ci config
ci/woodpecker/push/woodpecker Pipeline was successful Details

pull/14/head
Jef Roosens 2022-01-08 23:01:30 +01:00
commit d80d320483
Signed by: Jef Roosens
GPG Key ID: 955C0660072F691F
2 changed files with 14 additions and 0 deletions

11
.woodpecker.yml 100644
View File

@ -0,0 +1,11 @@
pipeline:
lint:
image: 'thevlang/vlang:latest'
commands:
- v fmt -verify pieter
build:
image: 'thevlang/vlang:latest'
commands:
- v pieter

3
pieter/main.v 100644
View File

@ -0,0 +1,3 @@
fn main() {
println('Hello, world!')
}