From 958d22b3f1b2ee583700e2f8c55ec3be566baa23 Mon Sep 17 00:00:00 2001 From: Philipp Oppermann Date: Fri, 12 Aug 2022 13:41:46 +0200 Subject: [PATCH] Run the new C++ example on the CI --- .github/workflows/ci.yml | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index ae08b001..e6d510bb 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -50,6 +50,11 @@ jobs: with: command: run args: --example c-dataflow + - name: "C++ Dataflow example" + uses: actions-rs/cargo@v1 + with: + command: run + args: --example cxx-dataflow clippy: name: "Clippy"