From 6b6c6a17283b05c189a6b8e2dcc57e0d6030374e Mon Sep 17 00:00:00 2001 From: PanGan21 Date: Sat, 11 May 2024 12:37:22 +0300 Subject: [PATCH] add examples pipeline --- .github/workflows/example.yml | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) create mode 100644 .github/workflows/example.yml diff --git a/.github/workflows/example.yml b/.github/workflows/example.yml new file mode 100644 index 0000000..c659fbd --- /dev/null +++ b/.github/workflows/example.yml @@ -0,0 +1,19 @@ +name: Examples CI + +on: + pull_request: + push: + branches: + - master + +jobs: + examples: + name: Examples + runs-on: ubuntu-latest + + steps: + - name: Checkout code + uses: actions/checkout@v2 + + - name: Run examples + run: cargo run --example main --verbose