Skip to content

Linting

Linting #798

Workflow file for this run

name: Linting
on:
push:
branches: [main, "*postfix"]
pull_request:
branches: [main]
release:
types:
- published
schedule:
# Run nightly to check that tests are working with latest dependencies
- cron: "0 0 * * *"
jobs:
linting:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Setup xtgeo
uses: "./.github/actions/setup_xtgeo"
with:
python-version: 3.11
- name: List dependencies
run: pip freeze
- name: Lint with isort
if: ${{ always() }}
run: isort --check-only src tests
- name: Lint with black
if: ${{ always() }}
run: black src tests
- name: Lint with flake8
if: ${{ always() }}
run: flake8 src tests