Skip to content

Bump Azure/setup-azd from 2.0.0 to 2.1.0 in the github-actions group #271

Bump Azure/setup-azd from 2.0.0 to 2.1.0 in the github-actions group

Bump Azure/setup-azd from 2.0.0 to 2.1.0 in the github-actions group #271

Workflow file for this run

name: Python checks
on: [push, pull_request]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Set up Python 3
uses: actions/setup-python@v5
with:
python-version: "3.11"
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install -r requirements-dev.txt
- name: Lint with ruff
run: ruff check .
- name: Check formatting with black
run: black . --check --verbose
- name: Run unit tests
run: |
python3 -m pytest --cov