So it gets properly tested.
---
.build.yml | 9 ++++++++-
1 file changed, 8 insertions(+), 1 deletion(-)
diff --git a/.build.yml b/.build.yml
index 400b19a..c5f85c4 100644
--- a/.build.yml
+++ b/.build.yml
@@ -5,6 +5,7 @@ triggers:
to: witcher <witcher@wiredspace.de>
packages:
- rust
+ - scdoc
sources:
- https://git.sr.ht/~witcher/rss-email
tasks:
@@ -19,4 +20,10 @@ tasks:
cargo clippy --frozen -- -D warnings
- build: |
cd rss-email
- cargo build --frozen
+ # Building with --release is slow and pointless here.
+ sed -i -e 's/--release //' -e 's/release/debug/' Makefile
+ make build
+ - installl: |
+ cd rss-email
+ make install DESTDIR=$HOME/installdir
+ tree $HOME/installdir
--
2.41.0