diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 4139f45..5fa0d30 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -52,6 +52,8 @@ jobs: - name: Install dependencies and package shell: bash -l {0} run: | + conda install -c conda-forge pygrib netcdf4 pyresample pykdtree + # On macos pykdtree was built with OpenMP (C-level parallelization library) support if [ ${{ matrix.os }} == "macos-latest" ] then @@ -62,11 +64,6 @@ jobs: then conda install -c conda-forge pygrib fi - # CDO we can test on ubuntu - if [ ${{ matrix.os }} == "ubuntu-latest" ] - then - conda install -c conda-forge cdo - fi pip install -e .[testing] - name: Run all tests