Skip to content

Adding in exception for compute domains with sizes less than or equal to halo size #304

Adding in exception for compute domains with sizes less than or equal to halo size

Adding in exception for compute domains with sizes less than or equal to halo size #304

Workflow file for this run

name: "Lint"
on:
pull_request:
# cancel running jobs if theres a newer push
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
jobs:
lint:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v3.5.2
with:
submodules: 'recursive'
- name: Step Python
uses: actions/setup-python@v4.6.0
with:
python-version: '3.11.7'
- name: Install OpenMPI for gt4py
run: |
sudo apt-get install libopenmpi-dev
- name: Install Python packages
run: |
python -m pip install --upgrade pip setuptools wheel
pip install .[develop]
- name: Run lint via pre-commit
run: |
pre-commit run --all-files