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 4cb8f3a commit d7cb0b9Copy full SHA for d7cb0b9
.github/workflows/LoopVecTests.yml
@@ -32,13 +32,13 @@ jobs:
32
repository: ${{ matrix.package.user }}/${{ matrix.package.repo }}
33
path: loopvec
34
- name: Load this and run the LoopVectorization tests
35
- shell: julia --color=yes --project=loopvec {0}
+ shell: julia --color=yes
36
run: |
37
using Pkg
38
try
39
# force it to use this PR's version of the package
40
Pkg.develop(PackageSpec(path=".")) # resolver may fail with main deps
41
- Pkg.develop(Pkg.PackageSpec(path=joinpath(pwd(), "lib", "ArrayInterfaceCore")))
+ Pkg.develop(Pkg.PackageSpec(path=joinpath("lib", "ArrayInterfaceCore")))
42
Pkg.update()
43
Pkg.test() # resolver may fail with test time deps
44
catch err
0 commit comments