From acd4e3cee72e56b46adb1eb476023dc80a25ea1a Mon Sep 17 00:00:00 2001 From: Alaina <68250402+alaidriel@users.noreply.github.com> Date: Tue, 30 Jan 2024 21:46:40 -0600 Subject: [PATCH] Fix workflow trigger paths --- .github/workflows/rust.yml | 16 +++++++--------- 1 file changed, 7 insertions(+), 9 deletions(-) diff --git a/.github/workflows/rust.yml b/.github/workflows/rust.yml index 75208c3..deb9591 100644 --- a/.github/workflows/rust.yml +++ b/.github/workflows/rust.yml @@ -3,16 +3,14 @@ on: pull_request: push: paths: - - "kyanite-core/**" - - "kyanite-cli/**" - - "kyanite-builtins/**" + - "crates/**" jobs: tests: runs-on: macos-latest steps: - - uses: actions/checkout@v3 - - uses: cachix/install-nix-action@v22 - with: - github_access_token: ${{ secrets.GITHUB_TOKEN }} - - run: nix develop -c cargo build - - run: nix develop -c cargo test \ No newline at end of file + - uses: actions/checkout@v3 + - uses: cachix/install-nix-action@v22 + with: + github_access_token: ${{ secrets.GITHUB_TOKEN }} + - run: nix develop -c cargo build + - run: nix develop -c cargo test