Skip to content

Github Action to Run tests #40

@peanutenthusiast

Description

@peanutenthusiast

🚨 Issue: Ensure GitHub Action Runs on push to Pull Request Branches

Description:

Currently, wedon't have any Github Actions triggered when new commits are pushed to an existing pull request. Let's update the workflow triggers to ensure that the CI runs on every push to branches associated with open PRs.

Acceptance Criteria:

  • The GitHub Action is triggered when new commits are pushed to a branch with an open pull request.
  • The workflow file includes on: [push, pull_request] or equivalent configuration.

Suggested Fix:

Update the workflow .yml file to include the following trigger block:

on:
  push:
    branches:
      - '**'  # or specific branches like 'main', 'develop', etc.
  pull_request:
    branches:
      - '**'

Metadata

Metadata

Labels

No labels
No labels

Type

No type

Projects

No projects

Milestone

No milestone

Relationships

None yet

Development

No branches or pull requests

Issue actions