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 80c6508 commit bf2126fCopy full SHA for bf2126f
.github/workflows/ci_tests.yaml
@@ -30,12 +30,21 @@ jobs:
30
# fecth all history so that versioneer works
31
fetch-depth: 0
32
33
+ - name: Cache conda packages
34
+ uses: actions/cache@v2
35
+ with:
36
+ path: ${CONDA_PKGS_DIRS}
37
+ key: cache-conda-${{ github.ref }}-${{ hashFiles('environment.yml') }}
38
+ restore-keys: |
39
+ cache-conda-refs/heads/master-
40
+
41
# Setup Miniconda
42
- name: Setup Miniconda
43
uses: goanpeca/[email protected]
44
with:
45
python-version: ${{ matrix.python-version }}
46
channels: conda-forge
47
+ use-only-tar-bz2: true # required for caching conda pacakges
48
49
# Install GMT and other required dependencies from conda-forge
50
- name: Install GMT and required dependencies
0 commit comments