Skip to content

Bump the npm-client group across 1 directory with 9 updates #1867

Bump the npm-client group across 1 directory with 9 updates

Bump the npm-client group across 1 directory with 9 updates #1867

Workflow file for this run

---
name: Run API tests
on:
pull_request:
# only runs on PRs that target main
branches:
- main
workflow_dispatch:
permissions:
contents: read
jobs:
pytest:
name: RunAPITests
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4.1.1
- uses: actions/setup-python@65d7f2d534ac1bc67fcd62888c5f4f3d2cb2b236 # v4.7.1
with:
python-version: '3.11'
- name: Install dependencies
run: |
pip install -r ./requirements.txt
working-directory: api
- name: Run pytest
run: |
pytest
working-directory: api