You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I was following a tutorial online for using PkgTemplates to create a Julia package. I used the following template:
using PkgTemplates
t =Template(;
user="YanniPapandreou",
authors=["Yanni Papandreou"],
plugins=[
License(; name="MIT"),
TravisCI(),
Codecov(),
Coveralls(),
AppVeyor(),
],
)
t("MyExample")
The generated README.md file generated a Travis CI badge whose link did not work. This linked to https://travis-ci.com/YanniPapandreou/MyExample.jl instead of the correct link https://app.travis-ci.com/YanniPapandreou/MyExample.jl. I have changed the CI.jl code to use the correct link, the relevant changes are detailed below:
I submitted but then closed a pull request as I read that it is better to first submit an issue; I am new to contributing to open source. If this is something that should be changed I am happy to reopen the pull request. Thanks :)
The text was updated successfully, but these errors were encountered:
Hi,
I was following a tutorial online for using PkgTemplates to create a Julia package. I used the following template:
The generated
README.md
file generated a Travis CI badge whose link did not work. This linked tohttps://travis-ci.com/YanniPapandreou/MyExample.jl
instead of the correct linkhttps://app.travis-ci.com/YanniPapandreou/MyExample.jl
. I have changed theCI.jl
code to use the correct link, the relevant changes are detailed below:I submitted but then closed a pull request as I read that it is better to first submit an issue; I am new to contributing to open source. If this is something that should be changed I am happy to reopen the pull request. Thanks :)
The text was updated successfully, but these errors were encountered: