Skip to content

Commit a9213b9

Browse files
committed
fix
1 parent a5e42d3 commit a9213b9

File tree

3 files changed

+14
-3
lines changed

3 files changed

+14
-3
lines changed

.github/workflows/aot.yml

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,10 @@ jobs:
4848
arch: ${{ matrix.architecture }}
4949
show-versioninfo: true
5050
- name: Install PyPreferences
51-
run: julia -e 'using Pkg; pkg"dev ./PyPreferences.jl"'
51+
shell: julia {0}
52+
run: |
53+
using Pkg;
54+
pkg"dev ./PyPreferences.jl";
5255
- run: julia -e 'using Pkg; pkg"add PackageCompiler@v1"'
5356

5457
- run: aot/compile.jl

.github/workflows/conda.yml

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,12 @@ jobs:
4242
arch: ${{ matrix.architecture }}
4343
show-versioninfo: true
4444
- name: Install PyPreferences
45-
run: julia --project=@. -e 'using Pkg; pkg"dev ./PyPreferences.jl"; using PyPreferences; PyPreferences.use_conda()'
45+
shell: julia --project=@. {0}
46+
run: |
47+
using Pkg;
48+
pkg"dev ./PyPreferences.jl";
49+
using PyPreferences;
50+
PyPreferences.use_conda();
4651
- uses: julia-actions/julia-runtest@v1
4752
- uses: julia-actions/julia-processcoverage@v1
4853
- uses: codecov/codecov-action@v1

.github/workflows/system.yml

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -73,7 +73,10 @@ jobs:
7373
arch: ${{ matrix.architecture }}
7474
show-versioninfo: true
7575
- name: Install PyPreferences
76-
run: julia --project=@. -e 'using Pkg; pkg"dev ./PyPreferences.jl"'
76+
shell: julia --project=@. {0}
77+
run: |
78+
using Pkg;
79+
pkg"dev ./PyPreferences.jl"
7780
- uses: julia-actions/julia-runtest@v1
7881
- uses: julia-actions/julia-processcoverage@v1
7982
- uses: codecov/codecov-action@v1

0 commit comments

Comments
 (0)