Updated version number in setup.py to be 2024.03.01 #46
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: | |
types: [opened, synchronize, reopened, ready_for_review, labeled, unlabeled] | |
jobs: | |
lint: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout repository | |
uses: actions/[email protected] | |
with: | |
submodules: 'recursive' | |
- name: Step Python | |
uses: actions/[email protected] | |
with: | |
python-version: '3.8.12' | |
- 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 |