pace/tests/main/grid/test_eta.py moved to NDSL/tests/grid/test_eta.py #7
Workflow file for this run
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
name: "Lint" | |
on: | |
pull_request: | |
jobs: | |
lint: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout Pace repository | |
uses: actions/checkout@v3.5.2 | |
with: | |
submodules: 'recursive' | |
- name: Step Python 3.11.7 | |
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 | |
pip install -r requirements_dev.txt -r requirements_lint.txt | |
- name: Run lint via pre-commit | |
run: | | |
pre-commit run --all-files |