From 599c6d2a83f09bbc44b7b61766c3f397b636a56d Mon Sep 17 00:00:00 2001 From: Daniel Chew Date: Tue, 4 Jun 2024 22:45:29 +0900 Subject: [PATCH] update ci workflow --- .github/workflows/{ci-hermes.yml => ci-hermes-server.yml} | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) rename .github/workflows/{ci-hermes.yml => ci-hermes-server.yml} (71%) diff --git a/.github/workflows/ci-hermes.yml b/.github/workflows/ci-hermes-server.yml similarity index 71% rename from .github/workflows/ci-hermes.yml rename to .github/workflows/ci-hermes-server.yml index a81426759f..58312c6799 100644 --- a/.github/workflows/ci-hermes.yml +++ b/.github/workflows/ci-hermes-server.yml @@ -1,11 +1,11 @@ -name: Check Hermes +name: Check Hermes Server on: pull_request: - paths: [apps/hermes/**] + paths: [apps/hermes/server/**] push: branches: [main] - paths: [apps/hermes/**] + paths: [apps/hermes/server/**] jobs: test: runs-on: ubuntu-latest @@ -20,4 +20,4 @@ jobs: - name: Install protoc uses: arduino/setup-protoc@v3 - name: Run executor tests - run: cargo test --manifest-path ./apps/hermes/Cargo.toml + run: cargo test --manifest-path ./apps/hermes/server/Cargo.toml