Skip to content

Commit 97c5f50

Browse files
committed
jrgfdsh
1 parent 63aa464 commit 97c5f50

File tree

2 files changed

+7
-2
lines changed

2 files changed

+7
-2
lines changed

.github/workflows/Test.yml

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -26,10 +26,11 @@ jobs:
2626
- uses: julia-actions/cache@v2
2727
- name: Develop subpackages
2828
run: |
29-
julia --project -e "
29+
julia --project -e '
3030
using Pkg
31+
Pkg.develop("KernelAbstractions")
3132
Pkg.develop([PackageSpec(; name=basename(path), path) for path in ARGS])
32-
" lib/GPUArraysCore
33+
' lib/GPUArraysCore
3334
- uses: julia-actions/julia-runtest@v1
3435
continue-on-error: ${{ matrix.version == 'nightly' }}
3536
- uses: julia-actions/julia-processcoverage@v1

test/runtests.jl

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,12 @@
1+
using Pkg
2+
Pkg.develop("KernelAbstractions")
3+
14
using Distributed
25
using Dates
36
import REPL
47
using Printf: @sprintf
58

9+
610
# parse some command-line arguments
711
function extract_flag!(args, flag, default=nothing)
812
for f in args

0 commit comments

Comments
 (0)