Skip to content

BLD: Use setuptools_scm version_file #10

BLD: Use setuptools_scm version_file

BLD: Use setuptools_scm version_file #10

Workflow file for this run

name: linting
on: [push, pull_request]
jobs:
linting:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-python@v4
with:
python-version: "3.10"
- name: Check black style and linting
run: |
pip install black
pip freeze
black --check *.py src tests --extend-exclude tests/**/snapshots --extend-exclude src/xtgeo/grid3d/grid_properties.py
pip install flake8
flake8 src tests