From dc6966fb612e2163348a8d48b27d7882f2be94f5 Mon Sep 17 00:00:00 2001 From: Harsh Shandilya Date: Tue, 15 Feb 2022 03:02:30 +0530 Subject: [PATCH] chore: add test github workflow --- .github/workflows/test.yml | 13 +++++++++++++ 1 file changed, 13 insertions(+) create mode 100644 .github/workflows/test.yml diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml new file mode 100644 index 0000000..de31485 --- /dev/null +++ b/.github/workflows/test.yml @@ -0,0 +1,13 @@ +on: + push: + branches: + - main + - renovate/** + pull_request: + branches: + - main + +name: Check Rust code +jobs: + check: + uses: msfjarvis/shared-workflows/.github/workflows/test-rust-project.yml@main