Skip to content

Pin version of pytest and pytest-asyncio #9

Pin version of pytest and pytest-asyncio

Pin version of pytest and pytest-asyncio #9

Workflow file for this run

name: Continuous Integration
on:
workflow_dispatch:
pull_request:
push:
branches:
- main
jobs:
test:
runs-on: ubuntu-latest
timeout-minutes: 10
steps:
- uses: actions/checkout@v3
- name: Set up Python
uses: actions/setup-python@v4
with:
python-version: "3.x"
- name: Install Dependencies
run: |
pip3 install -e ".[dev]"
- name: Run pre-commit
run: pre-commit run --all-files
- name: Run Pytest
run: pytest