Skip to content

Add Azure Open AI

Add Azure Open AI #55

Workflow file for this run

name: Lint and Test
on:
push:
branches:
- main
pull_request:
branches:
- main
jobs:
lint:
name: Lint and Test
runs-on: [ubuntu-latest]
continue-on-error: false
steps:
# Checkout repository
- name: Check Out Repository
id: checkout_repository
uses: actions/checkout@v4
# Run Linting
- name: Run Linting
id: linting
run: |
echo "Install dependencies"
python3 -m pip install -r requirements.txt -q
echo "Initialize Git"
git init
git add *
echo "Run pre-commit"
python3 -m pre_commit install --install-hooks
python3 -m pre_commit run --all-files --verbose