Skip to content

Running Python Lint check on Pull Request from leafie8 πŸš€ #12

Running Python Lint check on Pull Request from leafie8 πŸš€

Running Python Lint check on Pull Request from leafie8 πŸš€ #12

Workflow file for this run

name: Python Lint Checks
run-name: Running Python Lint check on Pull Request from ${{ github.actor }} πŸš€
on:
workflow_dispatch:
push:
branches: [ "main" ]
pull_request:
# The branches below must be a subset of the branches above
branches: [ "main" ]
jobs:
Lint:
runs-on: ubuntu-latest
steps:
- run: echo "πŸ”Ž The name of your branch is ${{ github.ref }} and your repository is ${{ github.repository }}."
- name: Check out repository code
uses: actions/checkout@v3
- name: Black Code Formatter
uses: lgeiger/black-action@v1.0.1
with:
args: ". --check"
- run: echo "🍏 This job's status is ${{ job.status }}."