Skip to content

Bump pytest-asyncio from 0.23.6 to 0.23.7 #221

Bump pytest-asyncio from 0.23.6 to 0.23.7

Bump pytest-asyncio from 0.23.6 to 0.23.7 #221

Workflow file for this run

name: Run Python Tests
on:
push:
branches:
- "*"
pull_request:
branches:
- main
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Install Python 3
uses: actions/setup-python@v5
with:
python-version: 3.9
- name: Setup Poetry
uses: abatilo/actions-poetry@v2
- name: Install dependencies
run: |
poetry install
- name: Run mypy
run: poetry run mypy src/rivian
- name: Run tests with poetry and pytest
run: poetry run pytest