From bbf7ef621e8e06dd8ac7ffa674c4df84c65b97b1 Mon Sep 17 00:00:00 2001 From: Binyang2014 Date: Tue, 9 May 2023 22:07:13 +0800 Subject: [PATCH] Enable github action on all branches (#68) --- .github/workflows/cpplint.yml | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/.github/workflows/cpplint.yml b/.github/workflows/cpplint.yml index 72da335e..0b002f44 100644 --- a/.github/workflows/cpplint.yml +++ b/.github/workflows/cpplint.yml @@ -2,9 +2,11 @@ name: C++ Lint on: push: - branches: [ main ] + branches: + - '**' pull_request: - branches: [ main ] + branches: + - '**' jobs: run-linters: