feat: Update versioning configuration and add changelog support #46
Workflow file for this run
This file contains hidden or 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: 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 |