Skip to content

Run test badge in readme has "no status" #1060

Description

@Kev1CO

The badge status in the README is set to "no status".
This is because the tests are only run during PR and not once merge to the main repository, thus the badge is never updated.
To fix this, a simple modification can be done to make those tests update once a PR is merged and giving the correct badge to display in the README.

In the run_tests file or the workflow folder replace:
on: [pull_request]

With:

on:
  push:
    branches: [main]
  pull_request:

This simple and minor addition could be implemented in the next PR.

Metadata

Metadata

Assignees

No one assigned

    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