From bc2f049e4478f7e90199349042369a86c5465845 Mon Sep 17 00:00:00 2001 From: Siarhei Luskanau Date: Wed, 20 Nov 2024 22:09:10 +0100 Subject: [PATCH] Run CI on pull requests This commit updates the CI workflow to run on pull requests targeting the main branch in addition to pushes to the main branch. --- .github/workflows/ci.yml | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 0c4adf5..faca65b 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -1,6 +1,12 @@ name: CI -on: [ push ] +on: + push: + branches: + - main + pull_request: + branches: + - main jobs: