From ef346afa67945ff63cd0971a2c2ebc349f80631c Mon Sep 17 00:00:00 2001 From: Marcel van der Veldt Date: Thu, 22 Feb 2024 09:53:17 +0100 Subject: [PATCH 1/2] Ignore main branch in test workflow push --- .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 9b257037..758bb4be 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -5,7 +5,7 @@ name: Test on: push: - branches: [main] + branches: ["!main"] pull_request: branches: [main] From 172a7aed541dca3e85bd210b2a8a8123ea96ef4b Mon Sep 17 00:00:00 2001 From: Marcel van der Veldt Date: Thu, 22 Feb 2024 10:46:16 +0100 Subject: [PATCH 2/2] Update test.yml --- .github/workflows/test.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 758bb4be..87eb4922 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -5,7 +5,7 @@ name: Test on: push: - branches: ["!main"] + branches: [main] pull_request: branches: [main] @@ -29,7 +29,7 @@ jobs: pip install -e .[server] pip install -e .[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