test/Project.toml versioning issues

I’ve added a test/Project.toml which includes PackageName#master. However, Github CI seems to be ignoring the #master branch and just loading the last tagged version of the package.

Is this a known issue, and if so is there a fix?

Have you checked in the test/Manifest.toml? The Project.toml only includes the names of the dependencies, so if you only have that you’ll fetch the registered versions available in the registry. To fetch the master branch by url you’ll need the manifest

1 Like

I think that’s probably it. I always forget about needing the Manifest too for extra package info.

Thanks!