#12005 Well Target Candidates: Move ensemble grid under generator in … #13682
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
name: Python Linting | |
on: [push, pull_request] | |
jobs: | |
lint: | |
runs-on: ubuntu-20.04 | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions/setup-python@v5 | |
with: | |
python-version: '3.10' | |
- name: (Python) Use black to do linting | |
run: | | |
pip install black | |
cd GrpcInterface | |
black . | |
- uses: peter-evans/create-pull-request@v7 | |
with: | |
token: ${{ secrets.GITHUB_TOKEN }} | |
commit-message: "Python code linting changes detected by black" | |
title: "Fixes by black (Python)" | |
branch: python-black-patches | |
branch-suffix: random | |
base: ${{ github.head_ref }} |