From 9e1c7de0c2608f7e23a59e498e7d1fa366d514c3 Mon Sep 17 00:00:00 2001 From: Constantin <40324023+derconno@users.noreply.github.com> Date: Mon, 15 Dec 2025 16:28:49 +0100 Subject: [PATCH] Don't run actions twice Because the on push event is triggered for all branches, the workflow will also execute whenever a PR is opened or updated. Additionally specifying on pull_request triggers the actions twice, wasting time and resources. --- .github/workflows/ci.yml | 1 - 1 file changed, 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index c5e59d5..df338e2 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -2,7 +2,6 @@ name: Cargo Build & Test on: push: - pull_request: env: CARGO_TERM_COLOR: always