-
Notifications
You must be signed in to change notification settings - Fork 9
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #236 from roocs/regrid-main-merge-master
Regrid main merge master
- Loading branch information
Showing
49 changed files
with
1,726 additions
and
404 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
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 |
---|---|---|
|
@@ -13,10 +13,14 @@ jobs: | |
matrix: | ||
tox-env: [black] | ||
steps: | ||
- uses: actions/checkout@v2 | ||
- uses: actions/setup-python@v2 | ||
- name: Cancel previous runs | ||
uses: styfle/[email protected] | ||
with: | ||
python-version: 3.7 | ||
access_token: ${{ github.token }} | ||
- uses: actions/checkout@v3 | ||
- uses: actions/setup-python@v4 | ||
with: | ||
python-version: "3.8" | ||
- name: Install tox | ||
run: pip install tox | ||
- name: Run linting suite | ||
|
@@ -28,19 +32,19 @@ jobs: | |
strategy: | ||
matrix: | ||
include: | ||
- python-version: 3.7 | ||
tox-env: py37 | ||
allowed_to_fail: false | ||
- python-version: 3.8 | ||
- python-version: "3.8" | ||
tox-env: py38 | ||
allowed_to_fail: false | ||
- python-version: 3.9 | ||
- python-version: "3.9" | ||
tox-env: py39 | ||
allowed_to_fail: false | ||
- python-version: "3.10" | ||
tox-env: py310 | ||
allowed_to_fail: false | ||
steps: | ||
- uses: actions/checkout@v2 | ||
- uses: actions/checkout@v3 | ||
- name: Set up Python ${{ matrix.python-version }} | ||
uses: actions/setup-python@v2 | ||
uses: actions/setup-python@v4 | ||
with: | ||
python-version: ${{ matrix.python-version }} | ||
- name: Install tox | ||
|
@@ -57,16 +61,19 @@ jobs: | |
matrix: | ||
python-version: [3.8] | ||
steps: | ||
- uses: actions/checkout@v2 | ||
- uses: actions/checkout@v3 | ||
- name: Setup conda with Python ${{ matrix.python-version }} | ||
uses: s-weigand/setup-conda@v1 | ||
with: | ||
update-conda: true | ||
python-version: ${{ matrix.python-version }} | ||
conda-channels: conda-forge, defaults | ||
- name: Install mamba | ||
run: | | ||
conda install -c conda-forge mamba | ||
- name: Conda env configuration | ||
run: | | ||
conda env create -f environment.yml | ||
mamba env create -f environment.yml | ||
source activate clisops | ||
pip install -e ".[dev]" | ||
- name: Test with conda | ||
|
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
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
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 |
---|---|---|
|
@@ -20,3 +20,4 @@ Contributors | |
|
||
* Pascal Bourgault [email protected] `@aulemahal <https://github.com/aulemahal>`_ | ||
* David Huard [email protected] `@huard <https://github.com/huard>`_ | ||
* Martin Schupfner [email protected] `@sol1105 <https://github.com/sol1105>`_ |
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
Oops, something went wrong.