From e4160b2f08b638963424b8fe829cdf609b10e966 Mon Sep 17 00:00:00 2001 From: Ali Behjati Date: Tue, 18 Oct 2022 18:33:34 +0200 Subject: [PATCH] Run remote exec CI only if it's changed (#352) * Run remote exec CI only if it's changed To save more GH actions time + have faster CI checks (sometimes it takes longer than tilt!) * Update remote-executor.yml --- .github/workflows/remote-executor.yml | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/.github/workflows/remote-executor.yml b/.github/workflows/remote-executor.yml index 357ece62..abf189aa 100644 --- a/.github/workflows/remote-executor.yml +++ b/.github/workflows/remote-executor.yml @@ -2,9 +2,10 @@ name: Check Remote Executor on: pull_request: + paths: [ pythnet/remote-executor/** ] push: branches: [main] - + paths: [ pythnet/remote-executor/** ] jobs: pre-commit: runs-on: ubuntu-latest @@ -23,4 +24,4 @@ jobs: echo "/home/runner/.local/share/solana/install/active_release/bin" >> $GITHUB_PATH - name: Run executor tests run: cargo test-bpf --manifest-path ./pythnet/remote-executor/Cargo.toml - \ No newline at end of file +