Update dependency openai to v1 - autoclosed #242
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Makefile Workflow | |
on: | |
pull_request: | |
branches: | |
- main | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Check out code | |
uses: actions/checkout@v2 | |
- name: Setup Python | |
uses: actions/setup-python@v4 | |
with: | |
python-version: '3.11.4' | |
cache: 'pip' | |
- name: Run Makefile command | |
# just building, not pushing them | |
run: make base repeater | |
- name: install deps | |
run: pip install -r models/test/repeater/requirements.txt | |
- name: Simple Test | |
run: make test-init test teardown |