From 28cf1d3d25745baf5dd51a5e6ec0b7ef509a85b8 Mon Sep 17 00:00:00 2001 From: Abhishek Mallick Date: Sat, 28 Oct 2023 23:36:50 +0530 Subject: [PATCH] updated workflow-github-actions-dev --- .github/workflows/run-tests.yml | 11 ++++++++++- 1 file changed, 10 insertions(+), 1 deletion(-) diff --git a/.github/workflows/run-tests.yml b/.github/workflows/run-tests.yml index 69a9333..f3064bf 100644 --- a/.github/workflows/run-tests.yml +++ b/.github/workflows/run-tests.yml @@ -1,6 +1,12 @@ name: Tests -on: [push, pull_request] +on: + push: + branches: + - main + pull_request: + branches: + - main jobs: test: @@ -37,3 +43,6 @@ jobs: - name: Execute tests run: composer test + + - name: Generate code coverage report + run: composer coverage