Bump python-multipart from 0.0.9 to 0.0.18 in /src/aoai-api-simulator #120
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: ci-test | |
on: | |
pull_request: | |
branches: [ main ] | |
workflow_dispatch: | |
jobs: | |
ci-test: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
with: | |
fetch-depth: 0 # get all branches so that we can check out main to compare lint scores | |
- name: Run make ci-build in dev container | |
uses: devcontainers/[email protected] | |
with: | |
# TODO - cache dev container image | |
push: never | |
env: | | |
GITHUB_BASE_REF | |
runCmd: | | |
echo -e "Running ci-build for ref:$GITHUB_BASE_REF\n\n" | |
make install-requirements | |
echo -e "\n\n------------------------------ version --------------------------------------------------\n\n" | |
python --version | |
pip freeze | |
echo -e "\n\n------------------------------ lint --------------------------------------------------\n\n" | |
./scripts/ci-lint.sh | |
echo -e "\n\n------------------------------ test --------------------------------------------------\n\n" | |
make test | |