From d0e85e00e2e0013e79a35231c11cd5df9851784d Mon Sep 17 00:00:00 2001 From: Henrik Hautakoski Date: Fri, 20 Dec 2019 15:08:38 +0100 Subject: [PATCH] .github/workflows/ci.yml: run on all branches except master Only code from other branches should be pushed to master, so we can skip CI. --- .github/workflows/ci.yml | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 9d83408..931f196 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -1,6 +1,11 @@ name: CI -on: [ push ] +on: + push: + branches: + - '*' + - '*/*' + - '!master' jobs: unix: