From 88ca58df9b832c765a748e24050545057356d871 Mon Sep 17 00:00:00 2001 From: Mark Marks Date: Sat, 21 Sep 2024 19:13:17 +0200 Subject: [PATCH] fix: CI ran on non existing dirs --- .github/workflows/ci.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 47ad325..9a95a95 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -38,7 +38,7 @@ jobs: - name: Lint run: | - selene crates/ + selene lib/ style: name: Styling @@ -52,7 +52,7 @@ jobs: with: token: ${{ secrets.GITHUB_TOKEN }} version: v0.20.0 - args: --check crates/ + args: --check lib/ test: name: Unit Testing