-
Notifications
You must be signed in to change notification settings - Fork 43
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
9645735
commit b897ded
Showing
1 changed file
with
8 additions
and
11 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -39,6 +39,9 @@ jobs: | |
matrix: | ||
compiler: [gfortran-10, gfortran-11, gfortran-12] | ||
python-version: [3.11] | ||
defaults: | ||
run: | ||
shell: bash -el {0} | ||
env: | ||
F90: ${{ matrix.compiler }} | ||
FC: ${{ matrix.compiler }} | ||
|
@@ -58,21 +61,15 @@ jobs: | |
############################################################################### | ||
# Checks-out repository under $GITHUB_WORKSPACE | ||
- uses: actions/checkout@v4 | ||
# Set up Python and install dependencies | ||
- name: Set up Python | ||
uses: actions/setup-python@v5 | ||
with: | ||
python-version: ${{ matrix.python-version }} | ||
- name: Setup conda | ||
# uses: s-weigand/[email protected] | ||
# with: | ||
# python-version: 3.11 | ||
# Set up conda environment | ||
- name: Setup conda environment | ||
uses: conda-incubator/[email protected] | ||
with: | ||
auto-update-conda: true | ||
activate-environment: ci-env | ||
environment-file: build/environment.yml | ||
python-version: ${{ matrix.python-version }} | ||
- name: Install python packages | ||
run: conda install --yes cartopy matplotlib netcdf4 | ||
auto-activate-base: false | ||
# NetCDF C and FORTRAN libraries | ||
- name: Install NetCDF library | ||
run: | | ||
|