Update arrow example for columnar data #1466
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
# SPDX-FileCopyrightText: Contributors to the Power Grid Model project <powergridmodel@lfenergy.org> | |
# | |
# SPDX-License-Identifier: MPL-2.0 | |
name: Check Code Quality | |
on: | |
push: | |
branches: | |
- main | |
# run pipeline on pull request | |
pull_request: | |
# run pipeline on merge queue | |
merge_group: | |
# run pipeline from another workflow | |
workflow_call: | |
concurrency: | |
group: ${{ github.workflow }}-${{ github.ref }}-code-quality | |
cancel-in-progress: true | |
jobs: | |
check-code-quality: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- name: Set up Python | |
uses: actions/setup-python@v5 | |
with: | |
python-version: 3.11 | |
- name: Upgrade pip | |
run: pip install --upgrade pip | |
- name: Install and run isort | |
run: | | |
pip install isort | |
isort . | |
- name: Install and run black | |
run: | | |
pip install black[jupyter] | |
black . | |
- name: Install and run mypy | |
run: | | |
pip install mypy | |
mypy src | |
- name: Install and run pylint | |
run: | | |
pip install pylint . | |
pylint power_grid_model_io | |
- name: If needed raise error | |
run: | | |
if [[ `git status --porcelain --untracked-files=no` ]]; then | |
echo "Formatting not correct! See below the files which need to be reformatted!" | |
git status --porcelain --untracked-files=no | |
exit 1 | |
fi |