From 3b714bb0662427750172775a25894ac0ec6e458c Mon Sep 17 00:00:00 2001 From: Antanas Vaitkus Date: Tue, 23 Nov 2021 19:26:11 +0200 Subject: [PATCH] Add "ArgParse" as a dependency. --- .github/workflows/main.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index b7a1ebc..afd88bd 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -52,7 +52,7 @@ jobs: id: cache with: path: ~/.julia - key: ${{ runner.os }}-julia-v2 + key: ${{ runner.os }}-julia-v3 - name: Install Julia uses: julia-actions/setup-julia@v1 @@ -62,7 +62,7 @@ jobs: - name: Install Julia packages if: steps.cache.outputs.cache-hit != 'true' run: | - julia -e 'import Pkg;Pkg.add("CrystalInfoFramework");Pkg.add("Lerche");Pkg.add("FilePaths")' + julia -e 'import Pkg;Pkg.add("CrystalInfoFramework");Pkg.add("Lerche");Pkg.add("FilePaths");Pkg.add("ArgParse")' - name: checkout uses: actions/checkout@v2