Skip to content

Commit 591d1c3

Browse files
committed
fixup! Add options for the Julia binary and project path
1 parent 2b1f6d7 commit 591d1c3

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

.github/workflows/tests.yml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -73,8 +73,8 @@ jobs:
7373
os: ubuntu-latest
7474
pyversion: 3
7575
jlinstaller: manual
76-
env:
77-
MANUAL_TEST_PROJECT: /tmp/juliacall-test-project
76+
env:
77+
MANUAL_TEST_PROJECT: /tmp/juliacall-test-project
7878

7979
steps:
8080
- uses: actions/checkout@v5
@@ -91,16 +91,16 @@ jobs:
9191

9292
- name: Set up Julia
9393
id: setup_julia
94-
if: ${{ matrix.jlinstaller == "manual" }}
94+
if: ${{ matrix.jlinstaller == 'manual' }}
9595
uses: julia-actions/setup-julia@v2
9696
with:
9797
version: '1'
9898

9999
- name: Set up test Julia project
100-
if: ${{ matrix.jlinstaller == "manual" }}
100+
if: ${{ matrix.jlinstaller == 'manual' }}
101101
run: |
102-
mkdir ${{ MANUAL_TEST_PROJECT }}
103-
julia --project=${{ MANUAL_TEST_PROJECT }} -e 'import Pkg; Pkg.dev(path="."); Pkg.instantiate()'
102+
mkdir ${{ env.MANUAL_TEST_PROJECT }}
103+
julia --project=${{ env.MANUAL_TEST_PROJECT }} -e 'import Pkg; Pkg.dev(path="."); Pkg.instantiate()'
104104
105105
- name: Install dependencies
106106
run: |

0 commit comments

Comments
 (0)