Skip to content

Revert "changing message to see if updates are realized" #23

Revert "changing message to see if updates are realized"

Revert "changing message to see if updates are realized" #23

Workflow file for this run

name: Python application
on:
push:
branches:
- f24
pull_request:
branches:
- f24
permissions:
contents: read
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Set up Python 3.10
uses: actions/setup-python@v3
with:
python-version: "3.10"
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install flake8 pytest
if [ -f requirements.txt ]; then pip install -r requirements.txt; fi
- name: Lint with flake8
run: |
flake8 . --count --exit-zero --max-complexity=10 --max-line-length=127 --statistics
- name: Test with pytest
env:
AZURE_OPENAI_API_KEY: ${{ secrets.AZURE_OPENAI_API_KEY }}
run: |
pytest test/unit/test_translator.py