infrastructure/.github/workflows/lint.yml

18 lines
349 B
YAML

name: Lint
on: [push]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v1
- name: Set up Python 3.7
uses: actions/setup-python@v1
with:
python-version: 3.7
- name: Install dependencies
run: ./scripts/setup.sh
- name: Run linters
run: ./scripts/lint.sh