moonstream/.github/workflows/lint.db.yml

31 wiersze
723 B
YAML
Czysty Zwykły widok Historia

2021-08-03 12:22:06 +00:00
name: Lint Moonstream db
on:
pull_request:
branches:
- "main"
2021-08-03 12:22:06 +00:00
paths:
- "db/**"
2022-05-03 18:45:34 +00:00
- "!db/deploy/**"
2021-08-03 12:22:06 +00:00
jobs:
build:
runs-on: ubuntu-20.04
steps:
- uses: actions/checkout@v2
- name: Set up python
uses: actions/setup-python@v2
with:
python-version: "3.8"
- name: Upgrade pip and setuptools
run: pip install --upgrade pip setuptools
2021-08-03 12:22:06 +00:00
- name: Install test requirements
working-directory: ./db
run: pip install -e .[dev]
2021-08-24 13:13:02 +00:00
- name: Mypy type check
working-directory: ./db
run: mypy moonstreamdb/
2021-08-03 12:22:06 +00:00
- name: Black syntax check
working-directory: ./db
run: black --check moonstreamdb/