From fa321fefcbaa90559e843dd2c8ca2a6df56ac2f9 Mon Sep 17 00:00:00 2001 From: evalir Date: Wed, 26 Feb 2025 14:39:28 +0100 Subject: [PATCH] feat(ci): add feature checks Adds feature checks to CI, by using the library base action. Closes ENG-837. --- .github/workflows/rust-ci.yml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.github/workflows/rust-ci.yml b/.github/workflows/rust-ci.yml index 66a8553..60313ef 100644 --- a/.github/workflows/rust-ci.yml +++ b/.github/workflows/rust-ci.yml @@ -1,6 +1,7 @@ name: Rust CI on: + workflow_dispatch: push: branches: [main] pull_request: @@ -8,4 +9,4 @@ on: # simplest example of using the rust-base action jobs: rust-base: - uses: init4tech/actions/.github/workflows/rust-base.yml@main + uses: init4tech/actions/.github/workflows/rust-library-base.yml@main