Skip to content

Log instructions when azure credentials missing (#26) #55

Log instructions when azure credentials missing (#26)

Log instructions when azure credentials missing (#26) #55

Workflow file for this run

# .github/workflows/python-app.yml
# CI workflow that installs uv & make, then builds, lints, tests and packages
name: Build & Test
on:
push:
branches: [ "main" ]
pull_request:
branches: [ "main" ]
permissions:
contents: read
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
# Install uv (fast dependency manager) and add it to PATH
- name: Install uv
uses: astral-sh/setup-uv@v6 # caches uv automatically when the job re-runs
with:
enable-cache: true
version: "0.7.8"
- name: Set up Python 3.12
uses: actions/setup-python@v5
with:
python-version: "3.12"
- name: Install dependencies
run: |
make install
- name: Lint and type check
run: |
make check-no-fix
- name: Test with pytest
run: |
make test
- name: Build
run: |
make build