Skip to content

Bump the dependencies group with 2 updates #597

Bump the dependencies group with 2 updates

Bump the dependencies group with 2 updates #597

Workflow file for this run

name: Test and lint
on: [push]
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ["3.9", "3.10", "3.11"]
fail-fast: false
steps:
- uses: actions/checkout@v3
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}
cache: pip
cache-dependency-path: "**/poetry.lock"
- name: Install poetry
run: pip --disable-pip-version-check install -U poetry
- name: Install Python packages
run: poetry install
- name: Lint with flake8
run: |
poetry run flake8 --version
poetry run flake8 --show-source --statistics rouver rouver_test
- name: Type checking with mypy
run: |
poetry run mypy --version
poetry run mypy rouver rouver_test
- name: Test with unittest
run: poetry run pytest