Skip to content

Merge pull request #80 from bretterer/dependabot/pip/pytest-asyncio-0… #229

Merge pull request #80 from bretterer/dependabot/pip/pytest-asyncio-0…

Merge pull request #80 from bretterer/dependabot/pip/pytest-asyncio-0… #229

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