-
Notifications
You must be signed in to change notification settings - Fork 35
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
Showing
13 changed files
with
319 additions
and
318 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 |
---|---|---|
@@ -1,11 +1,11 @@ | ||
version: 2 | ||
updates: | ||
# - package-ecosystem: pip | ||
# directory: "/" | ||
# schedule: | ||
# interval: daily | ||
- package-ecosystem: 'github-actions' | ||
directory: '/' | ||
schedule: | ||
# Check for updates once a week | ||
interval: 'weekly' | ||
# - package-ecosystem: pip | ||
# directory: "/" | ||
# schedule: | ||
# interval: daily | ||
- package-ecosystem: 'github-actions' | ||
directory: '/' | ||
schedule: | ||
# Check for updates once a week | ||
interval: 'weekly' |
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 |
---|---|---|
@@ -1,94 +1,94 @@ | ||
name: CI | ||
|
||
on: | ||
push: | ||
branches: | ||
- master | ||
pull_request: | ||
branches: | ||
- '*' | ||
schedule: | ||
- cron: '0 0 * * *' # Daily “At 00:00” | ||
workflow_dispatch: # allows you to trigger manually | ||
push: | ||
branches: | ||
- master | ||
pull_request: | ||
branches: | ||
- '*' | ||
schedule: | ||
- cron: '0 0 * * *' # Daily “At 00:00” | ||
workflow_dispatch: # allows you to trigger manually | ||
|
||
jobs: | ||
build: | ||
runs-on: ubuntu-latest | ||
defaults: | ||
run: | ||
shell: bash -l {0} | ||
strategy: | ||
fail-fast: false | ||
matrix: | ||
include: | ||
# Warning: Unless in quotations, numbers below are read as floats. 3.10 < 3.2 | ||
- python-version: '3.8' | ||
esmf-version: 8.2 | ||
- python-version: '3.9' | ||
esmf-version: 8.3 | ||
- python-version: '3.10' | ||
esmf-version: 8.4 | ||
- python-version: '3.11' | ||
esmf-version: 8.4 | ||
steps: | ||
- name: Cancel previous runs | ||
uses: styfle/[email protected] | ||
with: | ||
access_token: ${{ github.token }} | ||
- name: Checkout source | ||
uses: actions/checkout@v4 | ||
- name: Create conda environment | ||
uses: mamba-org/provision-with-micromamba@main | ||
with: | ||
cache-downloads: true | ||
micromamba-version: 'latest' | ||
environment-file: ci/environment.yml | ||
extra-specs: | | ||
python=${{ matrix.python-version }} | ||
esmpy=${{ matrix.esmf-version }} | ||
- name: Install Xesmf (editable) | ||
run: | | ||
python -m pip install --no-deps -e . | ||
- name: Conda list information | ||
run: | | ||
conda env list | ||
conda list | ||
- name: Run tests | ||
run: | | ||
python -m pytest --cov=./ --cov-report=xml --verbose | ||
- name: Upload coverage to Codecov | ||
uses: codecov/[email protected] | ||
with: | ||
file: ./coverage.xml | ||
fail_ci_if_error: false | ||
build: | ||
runs-on: ubuntu-latest | ||
defaults: | ||
run: | ||
shell: bash -l {0} | ||
strategy: | ||
fail-fast: false | ||
matrix: | ||
include: | ||
# Warning: Unless in quotations, numbers below are read as floats. 3.10 < 3.2 | ||
- python-version: '3.8' | ||
esmf-version: 8.2 | ||
- python-version: '3.9' | ||
esmf-version: 8.3 | ||
- python-version: '3.10' | ||
esmf-version: 8.4 | ||
- python-version: '3.11' | ||
esmf-version: 8.4 | ||
steps: | ||
- name: Cancel previous runs | ||
uses: styfle/[email protected] | ||
with: | ||
access_token: ${{ github.token }} | ||
- name: Checkout source | ||
uses: actions/checkout@v4 | ||
- name: Create conda environment | ||
uses: mamba-org/provision-with-micromamba@main | ||
with: | ||
cache-downloads: true | ||
micromamba-version: 'latest' | ||
environment-file: ci/environment.yml | ||
extra-specs: | | ||
python=${{ matrix.python-version }} | ||
esmpy=${{ matrix.esmf-version }} | ||
- name: Install Xesmf (editable) | ||
run: | | ||
python -m pip install --no-deps -e . | ||
- name: Conda list information | ||
run: | | ||
conda env list | ||
conda list | ||
- name: Run tests | ||
run: | | ||
python -m pytest --cov=./ --cov-report=xml --verbose | ||
- name: Upload coverage to Codecov | ||
uses: codecov/[email protected] | ||
with: | ||
file: ./coverage.xml | ||
fail_ci_if_error: false | ||
|
||
upstream-dev: | ||
name: upstream-dev | ||
runs-on: ubuntu-latest | ||
defaults: | ||
run: | ||
shell: bash -l {0} | ||
steps: | ||
- name: Cancel previous runs | ||
uses: styfle/[email protected] | ||
with: | ||
access_token: ${{ github.token }} | ||
- uses: actions/checkout@v4 | ||
- name: Create conda environment | ||
uses: mamba-org/provision-with-micromamba@v16 | ||
with: | ||
cache-downloads: true | ||
micromamba-version: 'latest' | ||
environment-file: ci/environment-upstream-dev.yml | ||
extra-specs: | | ||
python=3.10 | ||
- name: Install Xesmf (editable) | ||
run: | | ||
python -m pip install -e . | ||
- name: Conda list information | ||
run: | | ||
conda env list | ||
conda list | ||
- name: Run tests | ||
run: | | ||
python -m pytest --cov=./ --cov-report=xml --verbose | ||
upstream-dev: | ||
name: upstream-dev | ||
runs-on: ubuntu-latest | ||
defaults: | ||
run: | ||
shell: bash -l {0} | ||
steps: | ||
- name: Cancel previous runs | ||
uses: styfle/[email protected] | ||
with: | ||
access_token: ${{ github.token }} | ||
- uses: actions/checkout@v4 | ||
- name: Create conda environment | ||
uses: mamba-org/provision-with-micromamba@v16 | ||
with: | ||
cache-downloads: true | ||
micromamba-version: 'latest' | ||
environment-file: ci/environment-upstream-dev.yml | ||
extra-specs: | | ||
python=3.10 | ||
- name: Install Xesmf (editable) | ||
run: | | ||
python -m pip install -e . | ||
- name: Conda list information | ||
run: | | ||
conda env list | ||
conda list | ||
- name: Run tests | ||
run: | | ||
python -m pytest --cov=./ --cov-report=xml --verbose |
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 |
---|---|---|
@@ -1,18 +1,18 @@ | ||
name: linting | ||
|
||
on: | ||
push: | ||
branches: | ||
- master | ||
pull_request: | ||
branches: '*' | ||
push: | ||
branches: | ||
- master | ||
pull_request: | ||
branches: '*' | ||
|
||
jobs: | ||
linting: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v4 | ||
- uses: actions/setup-python@v4 | ||
with: | ||
python-version: '3.x' | ||
- uses: pre-commit/[email protected] | ||
linting: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v4 | ||
- uses: actions/setup-python@v4 | ||
with: | ||
python-version: '3.x' | ||
- uses: pre-commit/[email protected] |
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 |
---|---|---|
@@ -1,55 +1,55 @@ | ||
name: Publish to PyPI | ||
|
||
on: | ||
pull_request: | ||
push: | ||
branches: | ||
- master | ||
release: | ||
types: | ||
- published | ||
pull_request: | ||
push: | ||
branches: | ||
- master | ||
release: | ||
types: | ||
- published | ||
|
||
defaults: | ||
run: | ||
shell: bash | ||
run: | ||
shell: bash | ||
|
||
jobs: | ||
packages: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v4 | ||
|
||
- name: Set up Python | ||
uses: actions/setup-python@v4 | ||
with: | ||
python-version: '3.x' | ||
|
||
- name: Get tags | ||
run: git fetch --depth=1 origin +refs/tags/*:refs/tags/* | ||
|
||
- name: Install build tools | ||
run: | | ||
python -m pip install --upgrade build | ||
- name: Build binary wheel | ||
run: python -m build --sdist --wheel . --outdir dist | ||
|
||
- name: CheckFiles | ||
run: | | ||
ls dist | ||
python -m pip install --upgrade check-manifest | ||
check-manifest --verbose | ||
- name: Test wheels | ||
run: | | ||
# We cannot run this step b/c esmpy is not available on PyPI | ||
# cd dist && python -m pip install *.whl && cd .. | ||
python -m pip install --upgrade build twine | ||
python -m twine check dist/* | ||
- name: Publish a Python distribution to PyPI | ||
if: success() && github.event_name == 'release' | ||
uses: pypa/gh-action-pypi-publish@release/v1 | ||
with: | ||
user: __token__ | ||
password: ${{ secrets.PYPI_TOKEN }} | ||
packages: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v4 | ||
|
||
- name: Set up Python | ||
uses: actions/setup-python@v4 | ||
with: | ||
python-version: '3.x' | ||
|
||
- name: Get tags | ||
run: git fetch --depth=1 origin +refs/tags/*:refs/tags/* | ||
|
||
- name: Install build tools | ||
run: | | ||
python -m pip install --upgrade build | ||
- name: Build binary wheel | ||
run: python -m build --sdist --wheel . --outdir dist | ||
|
||
- name: CheckFiles | ||
run: | | ||
ls dist | ||
python -m pip install --upgrade check-manifest | ||
check-manifest --verbose | ||
- name: Test wheels | ||
run: | | ||
# We cannot run this step b/c esmpy is not available on PyPI | ||
# cd dist && python -m pip install *.whl && cd .. | ||
python -m pip install --upgrade build twine | ||
python -m twine check dist/* | ||
- name: Publish a Python distribution to PyPI | ||
if: success() && github.event_name == 'release' | ||
uses: pypa/gh-action-pypi-publish@release/v1 | ||
with: | ||
user: __token__ | ||
password: ${{ secrets.PYPI_TOKEN }} |
Oops, something went wrong.