Skip to content

Commit a8b97a1

Browse files
committed
Fix mistake in downstream test workflow
1 parent 1e11e7c commit a8b97a1

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

.github/workflows/IntegrationTest.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,8 @@ jobs:
5858
# force it to use this PR's version of the package
5959
Pkg.develop(PackageSpec(path=".")) # resolver may fail with main deps
6060
Pkg.update()
61-
Pkg.test("MapBroadcast") # resolver may fail with test time deps
61+
pkg_name = string(first(split(last(split("${{ inputs.repo }}", '/')), '.')))
62+
Pkg.test(pkg_name) # resolver may fail with test time deps
6263
catch err
6364
err isa Pkg.Resolve.ResolverError || rethrow()
6465
# If we can't resolve that means this is incompatible by SemVer and this is fine

0 commit comments

Comments
 (0)