From 0ed1233a2bb9b0f227ee1f656b58c32437ec2488 Mon Sep 17 00:00:00 2001 From: Dmitriy Pleshevskiy Date: Mon, 12 Aug 2024 17:22:31 +0300 Subject: [PATCH] ci: add workflow to test dependency updates --- .forgejo/workflows/renovate.yaml | 12 ++++++++++++ 1 file changed, 12 insertions(+) create mode 100644 .forgejo/workflows/renovate.yaml diff --git a/.forgejo/workflows/renovate.yaml b/.forgejo/workflows/renovate.yaml new file mode 100644 index 0000000..bc128ba --- /dev/null +++ b/.forgejo/workflows/renovate.yaml @@ -0,0 +1,12 @@ +on: + push: + branches: + - 'renovate/*' + +jobs: + test-dependencies: + runs-on: docker + steps: + - uses: actions/checkout@v4 + - uses: actions-rust-lang/setup-rust-toolchain@v1 + - run: cargo build