Skip to content

fix: Update versioning to include 'v' prefix and adjust bumpversion c… #49

fix: Update versioning to include 'v' prefix and adjust bumpversion c…

fix: Update versioning to include 'v' prefix and adjust bumpversion c… #49

Workflow file for this run

name: CI Style Checks
on:
push:
branches:
- main
- dev
pull_request:
branches:
- main
- dev*
paths-ignore:
- "*.md"
jobs:
style:
name: Style Checks
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ["3.12"]
steps:
- name: Checkout Repo
uses: actions/checkout@v6
- name: Install uv and set the python version
uses: astral-sh/setup-uv@v7
with:
python-version: ${{ matrix.python-version }}
enable-cache: true
- name: Pre-install
run: |
sudo apt-get update
sudo apt-get -y -q install ffmpeg libavcodec-extra
- name: Install the project
run: uv sync --extra dev
- name: pre-commit
run: uv run pre-commit run --all-files