From 0a4f32080c5dfa93155f6740e8f48cef11366df1 Mon Sep 17 00:00:00 2001 From: Marcel van der Veldt Date: Thu, 22 Feb 2024 19:37:48 +0100 Subject: [PATCH] skip the branch check in the test action --- .github/workflows/test.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 40a848dc..ab2522d1 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -28,7 +28,7 @@ jobs: python -m pip install --upgrade pip build setuptools pip install . .[test] - name: Lint/test with pre-commit - run: pre-commit run --all-files + run: SKIP=no-commit-to-branch pre-commit run --all-files test: runs-on: ubuntu-latest -- 2.34.1