Refactor GStreamerProxy to be a composable node #7
Workflow file for this run
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: Formatting (pre-commit) | |
on: | |
pull_request: | |
push: | |
branches: | |
- main | |
workflow_dispatch: | |
jobs: | |
pre-commit: | |
name: Format | |
runs-on: ubuntu-24.04 | |
steps: | |
- name: Checkout repository | |
uses: actions/checkout@v4 | |
- name: Setup Python | |
uses: actions/setup-python@v5 | |
with: | |
python-version: "3.12" | |
- name: Run pre-commit | |
uses: pre-commit/action@v3.0.1 | |
id: precommit | |
- name: Upload pre-commit changes | |
if: failure() && steps.precommit.outcome == 'failure' | |
uses: rhaschke/upload-git-patch-action@main | |
with: | |
name: pre-commit |