From 81f873e1053c90eb8ee33d9c77de25bd1e7bc143 Mon Sep 17 00:00:00 2001 From: Pieter Marsman Date: Wed, 2 Feb 2022 22:45:05 +0100 Subject: [PATCH] Update actions.yml so that it will run for all PR's --- .github/workflows/actions.yml | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) diff --git a/.github/workflows/actions.yml b/.github/workflows/actions.yml index 78a011e..ba87249 100644 --- a/.github/workflows/actions.yml +++ b/.github/workflows/actions.yml @@ -1,7 +1,14 @@ name: Continuous integration on: - push: + push: # run when commits are added to master or develop + branches: + - master + - develop + pull_request: # run on pr's against master or develop + branches: + - master + - develop env: default-python: "3.10"