Skip to content

build(deps): bump stefanzweifel/git-auto-commit-action from 6 to 7 #1004

build(deps): bump stefanzweifel/git-auto-commit-action from 6 to 7

build(deps): bump stefanzweifel/git-auto-commit-action from 6 to 7 #1004

Workflow file for this run

name: CI | Unit Tests
on:
push:
branches:
- main
pull_request:
branches:
- main
workflow_dispatch:
jobs:
run_tests:
strategy:
matrix:
python-version: [3.8, 3.9, 3.10.15, 3.11.10]
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Install uv
uses: astral-sh/setup-uv@v6
with:
enable-cache: true
- name: Set up Python ${{ matrix.python-version }}
run: uv python install ${{ matrix.python-version }}
- name: Install Dependencies
run: uv sync --group test
- name: Run Tests
run: uv run pytest