Skip to content

Bump mssql-django from 1.4.2 to 1.5 #378

Bump mssql-django from 1.4.2 to 1.5

Bump mssql-django from 1.4.2 to 1.5 #378

Workflow file for this run

name: Linting
on:
push:
branches:
- main
pull_request:
branches:
- main
schedule:
- cron: "0 3 1 * *"
jobs:
lint:
name: Lint
runs-on: ${{ matrix.image }}
strategy:
matrix:
os:
- Ubuntu
python-version:
- "3.12"
- "3.13"
include:
- os: Ubuntu
image: Ubuntu-22.04
steps:
- name: Check out repository
uses: actions/checkout@v4
- name: Set up python {{ matrix.python-version }}
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
allow-prereleases: true
- name: Install poetry
run: pipx install poetry
- name: poetry check
run: poetry check --lock
- name: set python environment
run: poetry env use ${{ matrix.python-version }}
- name: Install project
run: poetry install --extras azure
- name: ruff
run: poetry run ruff check .
- name: ruff format
run: poetry run ruff format --check .
- name: mypy
run: poetry run mypy .