From 71f72761af0645fe17d1f5faff955e0f5f0f8ca0 Mon Sep 17 00:00:00 2001 From: Julio Castillo Date: Fri, 22 Nov 2024 20:21:38 +0100 Subject: [PATCH] Run test and linting when pushing to master or fast-dev (#2730) Maintainers occasionally force push to these branches. This will allow tests to run without the need for a dummy PR --- .github/workflows/linting.yml | 4 ++++ .github/workflows/tests.yml | 4 ++++ 2 files changed, 8 insertions(+) diff --git a/.github/workflows/linting.yml b/.github/workflows/linting.yml index 95c9f041a..aef274874 100644 --- a/.github/workflows/linting.yml +++ b/.github/workflows/linting.yml @@ -18,6 +18,10 @@ on: branches: - master - fast-dev + push: + branches: + - master + - fast-dev jobs: linting: diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index a05d3d736..73df6e0a2 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -16,6 +16,10 @@ name: "Tests" on: # schedule: # - cron: "45 2 * * *" + push: + branches: + - master + - fast-dev pull_request: branches: - master