We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1e11e7c commit a8b97a1Copy full SHA for a8b97a1
.github/workflows/IntegrationTest.yml
@@ -58,7 +58,8 @@ jobs:
58
# force it to use this PR's version of the package
59
Pkg.develop(PackageSpec(path=".")) # resolver may fail with main deps
60
Pkg.update()
61
- Pkg.test("MapBroadcast") # resolver may fail with test time deps
+ pkg_name = string(first(split(last(split("${{ inputs.repo }}", '/')), '.')))
62
+ Pkg.test(pkg_name) # resolver may fail with test time deps
63
catch err
64
err isa Pkg.Resolve.ResolverError || rethrow()
65
# If we can't resolve that means this is incompatible by SemVer and this is fine
0 commit comments