We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
branch
The coveralls badge has the branch URL query parameters set to the fixed string branch, instead of the user provided value for the branch attribute.
This is fixed in #68.
For a badge configured like so:
$ tail -n1 Cargo.toml coveralls = { repository = "owayss/huffman-encoding", branch = "main" }
It configures the badge as:
$ cargo readme |grep coveralls [![Coverage Status](https://coveralls.io/repos/github/owayss/huffman-encoding/badge.svg?branch=branch)](https://coveralls.io/github/owayss/huffman-encoding?branch=main)
The branch URL query parameter should have the value provided for the branch attribute, that is, branch=main instead of branch=branch:
branch=main
branch=branch
[![Coverage Status](https://coveralls.io/repos/github/owayss/huffman-encoding/badge.svg?branch=main)](https://coveralls.io/github/owayss/huffman-encoding?branch=main)
The text was updated successfully, but these errors were encountered:
No branches or pull requests
The coveralls badge has the
branch
URL query parameters set to the fixed stringbranch
, instead of the user provided value for the branch attribute.This is fixed in #68.
Current behavior:
For a badge configured like so:
It configures the badge as:
Expected behavior
The
branch
URL query parameter should have the value provided for the branch attribute, that is,branch=main
instead ofbranch=branch
:The text was updated successfully, but these errors were encountered: