Skip to content

actualize version

actualize version #37

Workflow file for this run

name: Py-checks
on:
pull_request:
types:
- opened
- reopened
- edited
- synchronize
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ['3.8']
poetry-version: ['1.8.1']
steps:
- uses: actions/checkout@v2
- name: Set up Python
uses: actions/setup-python@v2
with:
python-version: ${{ matrix.python-version }}
- name: Display Python version
run: python -c "import sys; print(sys.version)"
- name: Run image
uses: abatilo/[email protected]
with:
poetry-version: ${{ matrix.poetry-version }}
- name: Install dependencies
run: poetry install
- name: Run ruff
run: poetry run ruff check finam_trade_api
- name: Run mypy
run: poetry run mypy .