Skip to content

Commit

Permalink
run pre-commit
Browse files Browse the repository at this point in the history
  • Loading branch information
huard committed Nov 10, 2023
1 parent 3c494bd commit 5be7f20
Show file tree
Hide file tree
Showing 13 changed files with 319 additions and 318 deletions.
18 changes: 9 additions & 9 deletions .github/dependabot.yml
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'
176 changes: 88 additions & 88 deletions .github/workflows/ci.yaml
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
26 changes: 13 additions & 13 deletions .github/workflows/linting.yaml
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]
96 changes: 48 additions & 48 deletions .github/workflows/pypi.yaml
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 }}
Loading

0 comments on commit 5be7f20

Please sign in to comment.