Skip to content

Merge pull request #325 from dongyuanjushi/update-links #339

Merge pull request #325 from dongyuanjushi/update-links

Merge pull request #325 from dongyuanjushi/update-links #339

Workflow file for this run

name: CI
on:
push:
branches:
- '**'
pull_request:
branches:
- 'main'
types: [opened, reopened, synchronize]
jobs:
run-pytest:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Set up Python
uses: actions/setup-python@v2
with:
python-version: "3.11"
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install -r requirements-dev.txt
- name: Run tests
run: |
pytest -v tests