From: David Schweikert Date: Thu, 25 Dec 2025 09:23:50 +0000 (+0100) Subject: GitHub actions: don't run tests twice for github PRs X-Git-Tag: v5.5~12 X-Git-Url: https://git.gsnw.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=50fe3435603152a9f5ef101de452c74a4ec7402a;p=fping.git GitHub actions: don't run tests twice for github PRs --- diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index ae52923..cfeca6e 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -1,5 +1,10 @@ name: Test -on: [push, pull_request] +on: + push: + branches: + - develop + pull_request: + workflow_dispatch: jobs: Test-Linux: runs-on: ${{ matrix.os }}