Skip to content

Bump nest-asyncio from 1.5.8 to 1.5.9 #3

Bump nest-asyncio from 1.5.8 to 1.5.9

Bump nest-asyncio from 1.5.8 to 1.5.9 #3

Workflow file for this run

name: build
on: [push]
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Install Poetry
run: pipx install poetry
- name: Setup Python
uses: actions/setup-python@v4
with:
python-version: "3.11"
cache: "poetry"
- name: Install Python dependencies
run: poetry install
- name: Test
run: poetry run pytest
- name: Lint
run: poetry run ruff check
- name: Format
run: poetry run ruff format --check