Skip to content

[969] [DOCS] improve the README #624

[969] [DOCS] improve the README

[969] [DOCS] improve the README #624

Workflow file for this run

name: Python CI
on:
push:
pull_request:
types: [opened, synchronize, reopened]
jobs:
test:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v3
- name: Set up Python
uses: actions/setup-python@v3
with:
python-version: '3.x'
- name: Install dependencies
run: pip install -r requirements.txt
- name: Run tests
run: pytest