Skip to content

Commit

Permalink
workflow_progress - added python_checks.yaml workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
OcelotWalrus committed Jan 12, 2024
1 parent aed4ceb commit 621ebcc
Showing 1 changed file with 28 additions and 0 deletions.
28 changes: 28 additions & 0 deletions .github/workflows/python_check.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@
name: Python Syntax Checks

on:
push:
branches:
- master
pull_request:
branches: [ master ]
types:
- synchronize
- opened

concurrency:
group: ${{ github.ref }}-${{ github.workflow }}-${{ github.event_name }}
cancel-in-progress: false

jobs:
lint:
name: Python Syntax Checks
runs-on: ubuntu-latest
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
steps:
- uses: actions/checkout@v4
with:
ref: ${{ github.event.pull_request.head.sha }}
show-progress: false
- uses: cclauss/Find-Python-syntax-errors-action@master

0 comments on commit 621ebcc

Please sign in to comment.