Skip to content

Merge pull request #188 from petrobras/other_improvements #754

Merge pull request #188 from petrobras/other_improvements

Merge pull request #188 from petrobras/other_improvements #754

Workflow file for this run

name: Lint
on: [push, pull_request]
jobs:
lint:
name: Check python code using the official black action
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
with:
sparse-checkout: |
/*
!*.parquet
sparse-checkout-cone-mode: false
- uses: psf/black@stable
with:
src: "."
options: "--check --verbose --diff"