Skip to content

Commit 290cac3

Browse files
committed
Next try
1 parent a02b1c3 commit 290cac3

File tree

1 file changed

+6
-4
lines changed

1 file changed

+6
-4
lines changed

.github/workflows/CI.yml

Lines changed: 6 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -43,13 +43,14 @@ jobs:
4343
- name: Install matplotlib
4444
run: if [ "$RUNNER_OS" = "Linux" ]; then sudo apt-get install -y python3-matplotlib; fi
4545
shell: bash
46-
- name: Instantiate project
47-
run: julia -e 'using Pkg; Pkg.activate("."); Pkg.resolve(); Pkg.instantiate();
4846
- uses: actions/checkout@v4
4947
- uses: julia-actions/setup-julia@v2
5048
with:
5149
version: ${{ matrix.version }}
5250
arch: ${{ matrix.arch }}
51+
- name: Instantiate project
52+
run: julia -e 'using Pkg; Pkg.activate("."); Pkg.resolve(); Pkg.instantiate();
53+
shell: bash
5354
- uses: actions/cache@v4
5455
env:
5556
cache-name: cache-artifacts
@@ -86,13 +87,14 @@ jobs:
8687
- name: Install matplotlib
8788
run: if [ "$RUNNER_OS" = "Linux" ]; then sudo apt-get install -y python3-matplotlib; fi
8889
shell: bash
89-
- name: Instantiate project
90-
run: julia -e 'using Pkg; Pkg.activate("."); Pkg.resolve(); Pkg.instantiate();
9190
- uses: actions/checkout@v4
9291
- uses: julia-actions/setup-julia@v2
9392
with:
9493
arch: ${{ matrix.julia_arch }}
9594
version: ${{ matrix.julia_version }}
95+
- name: Instantiate project
96+
run: julia -e 'using Pkg; Pkg.activate("."); Pkg.resolve(); Pkg.instantiate();
97+
shell: bash
9698
- uses: julia-actions/cache@v2
9799
- uses: julia-actions/julia-runtest@v1
98100
env:

0 commit comments

Comments
 (0)