@@ -33,6 +33,10 @@ jobs:
run: |
make test
+ - name: Compile all bins
+ run: |
+ ./scripts/compile_all_bins.sh
+
feature-powerset:
name: Test crate feature powerset on ${{ matrix.os }}
runs-on: ${{ matrix.os }}
@@ -0,0 +1,3 @@
+#!/bin/sh
+bins="$(find bin -maxdepth 1 | tail -n+2 | sed 's,bin/,,' | tr '\n' ' ')"
+make BINS="$bins"