From d141d92ca80c44b72edebdcac144573246788cf9 Mon Sep 17 00:00:00 2001 From: Paul-Christian Volkmer Date: Sat, 11 Feb 2023 19:06:17 +0100 Subject: [PATCH] Add main branch to list of branches for go test workflow --- .github/workflows/go-test.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/go-test.yml b/.github/workflows/go-test.yml index b985884..e6fbec8 100644 --- a/.github/workflows/go-test.yml +++ b/.github/workflows/go-test.yml @@ -2,9 +2,9 @@ name: Go test on: push: - branches: [ "master" ] + branches: [ "master", "main" ] pull_request: - branches: [ "master" ] + branches: [ "master", "main" ] jobs: build: