diff options
author | Rodrigo Arias Mallo <rodarima@gmail.com> | 2024-11-27 22:39:56 +0100 |
---|---|---|
committer | Rodrigo Arias Mallo <rodarima@gmail.com> | 2024-11-27 22:39:56 +0100 |
commit | d4f56d0d8d07dd45600eca76551c011e290e4520 (patch) | |
tree | 3a0cb21e3086e14200121545df6062b52b3f049d /.github | |
parent | f78fddd24558d5ca3b994a46b9747b259aa1e5dd (diff) |
Only run the CI tests once
Limit the push events to the master branch, otherwise they will be
running twice on every feature branch and PR.
Diffstat (limited to '.github')
-rw-r--r-- | .github/workflows/build.yml | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 909a53f5..86d8e3af 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -1,6 +1,9 @@ name: CI -on: [push, pull_request] +on: + pull_request: + push: + branches: master jobs: ubuntu-latest-html-tests: |