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 8e7496d commit deefec7Copy full SHA for deefec7
.github/workflows/CI.yml
@@ -40,6 +40,8 @@ jobs:
40
with:
41
version: ${{ matrix.julia-version }}
42
arch: ${{ matrix.julia-arch }}
43
+ - name: Test loadability
44
+ run: julia --project=@. -e 'using Pkg;Pkg.instantiate();using Webviews'
45
- name: Set up dependency on Linux
46
if: matrix.os == 'ubuntu-latest'
47
run: sudo apt-get update && sudo apt-get install libwebkit2gtk-4.0-dev
src/Webviews.jl
@@ -97,8 +97,9 @@ end
97
98
function __init__()
99
download_libwebview()
100
- _check_dependency()
101
- _setup_platform()
+ if _check_dependency()
+ _setup_platform()
102
+ end
103
nothing
104
end
105
0 commit comments