summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMatthias Beyer <mail@beyermatthias.de>2021-10-24 10:32:08 +0200
committerMatthias Beyer <mail@beyermatthias.de>2021-10-24 11:10:48 +0200
commit0b55e2eace39191920176f9731bbd28bb9994d3c (patch)
tree20aed0f680d1ec56975b7d21482cff89620d80ef
parentace5563a8f8428483c050759274d0a32de9f67d9 (diff)
Add initial woodpecker pipeline
Signed-off-by: Matthias Beyer <mail@beyermatthias.de>
-rw-r--r--.woodpecker/ci.yml17
1 files changed, 17 insertions, 0 deletions
diff --git a/.woodpecker/ci.yml b/.woodpecker/ci.yml
new file mode 100644
index 0000000..a9c1cf9
--- /dev/null
+++ b/.woodpecker/ci.yml
@@ -0,0 +1,17 @@
+pipeline:
+ check-service:
+ image: rust:${RUST_VERSION}
+ pull: true
+ commands:
+ - cd service-${SERVICE}
+ - cargo check
+ when:
+ event: [ push, pull_request ]
+
+matrix:
+ SERVICE:
+ - hello
+ - joiner
+ RUST_VERSION:
+ - latest
+ - 1.50.0