Skip to content

Issue16 implement bulk upload of items #27

Issue16 implement bulk upload of items

Issue16 implement bulk upload of items #27

name: Run Pytest
on:
pull_request:
branches:
- main
jobs:
build:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-latest, windows-latest]
steps:
- uses: actions/checkout@v3
- name: Set up Python 3.11
uses: actions/setup-python@v3
with:
python-version: 3.11
- name: Install dependencies
run: |
python -m pip install --upgrade pip
python -m pip install -r requirements/requirements-test.txt
- name: Test with pytest
run: |
pytest