From c8858bbb6892229148e3206148fd9684ed99e735 Mon Sep 17 00:00:00 2001 From: gwenn Date: Fri, 14 Jul 2023 11:19:58 +0200 Subject: [PATCH] Try to fix invalid workflow file --- .github/workflows/main.yml | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index 4b75b87..d311fde 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -66,8 +66,9 @@ jobs: - run: cargo test --features 'bundled-full session buildtime_bindgen' --doc --workspace --verbose - name: loadable extension - run: cargo build --example loadable_extension --features "loadable_extension modern_sqlite functions vtab trace" - run: cargo run --example load_extension --features "load_extension bundled functions vtab trace" + run: | + cargo build --example loadable_extension --features "loadable_extension modern_sqlite functions vtab trace" + cargo run --example load_extension --features "load_extension bundled functions vtab trace" # TODO: move into own action for better caching - name: Static build