Skip to content

Update README.md

Update README.md #17

Workflow file for this run

name: test
on:
push:
branches:
- main
pull_request:
jobs:
build:
name: test
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
with:
token: ${{ secrets.GITHUB_TOKEN }}
- name: Set up Python
uses: actions/setup-python@v4
with:
python-version: "3.10"
cache: "pip"
token: ${{ secrets.GITHUB_TOKEN }}
- run: |
python -m pip install --upgrade pip
python -m pip install -r requirements.txt
- name: Run pytest
run: |
python -m pytest