dao/.github/workflows/lint.yml

25 wiersze
486 B
YAML
Czysty Zwykły widok Historia

2021-12-18 17:03:17 +00:00
name: Lint Moonstream DAO codebase
on:
push:
branches:
- cicd
pull_request:
branches:
- main
jobs:
build:
runs-on: ubuntu-20.04
steps:
- uses: actions/checkout@v2
- uses: actions/setup-python@v2
with:
2021-12-18 16:59:29 +00:00
python-version: "3.9"
- name: Upgrade pip
run: pip install -U pip
- name: Install dev dependencies
run: pip install -e .[dev]
- name: Black syntax check
2021-12-18 16:59:29 +00:00
run: black --check dao/