Skip to content

Move lido linters to checks.yml #311

Move lido linters to checks.yml

Move lido linters to checks.yml #311

name: Tests and checks
on:
push:
jobs:
tests:
name: App tests
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Set up Python 3.10
uses: actions/setup-python@v4
with:
python-version: '3.10'
- name: Setup poetry
run: |
curl -sSL https://install.python-poetry.org/ | python - && echo "$HOME/.poetry/bin" >> $GITHUB_PATH
env:
POETRY_VERSION: 1.4.2
- name: Install dependencies
run: |
poetry install
- name: Test with pytest
run: |
poetry run pytest tests