Skip to content

Bump docker/build-push-action from 4.0.0 to 7.1.0 #1024

Bump docker/build-push-action from 4.0.0 to 7.1.0

Bump docker/build-push-action from 4.0.0 to 7.1.0 #1024

Workflow file for this run

---
name: Unit tests
on: # yamllint disable-line rule:truthy
workflow_dispatch:
push:
branches:
- master
- v*
pull_request:
branches:
- master
- v*
schedule:
- cron: '0 22 * * 0'
jobs:
unit-tests:
name: Unit tests
strategy:
matrix:
python_version: ["3.9", "3.10", "3.11", "3.12", "3.13"]
runs-on: ubuntu-latest
permissions:
contents: read
packages: read
container:
image: ghcr.io/${{ github.repository }}:CI-${{ matrix.python_version }}-msodbc18
credentials:
username: ${{ github.actor }}
password: ${{ secrets.github_token }}
steps:
- uses: actions/checkout@v4
- name: Install uv
run: pip install uv
- name: Install dependencies
run: uv pip install --system -r dev_requirements.txt
- name: Run unit tests
run: pytest -n auto -ra -v tests/unit