Skip to content

pre-commit autoupdate #1061

pre-commit autoupdate

pre-commit autoupdate #1061

Workflow file for this run

name: Linting
on: [push, pull_request]
jobs:
build:
runs-on: ubuntu-latest
strategy:
max-parallel: 4
matrix:
python-version: [3.11]
steps:
- uses: actions/checkout@v2
with:
fetch-depth: 0
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v2
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install -r requirements-ci.txt --quiet
- name: mypy
run: |
mypy --namespace-packages --explicit-package-bases pymatgen
- name: ruff
run: |
ruff check pymatgen
ruff format pymatgen