mirror of
https://github.com/kennethreitz/replit-py.git
synced 2026-06-05 23:10:18 +00:00
18 lines
417 B
YAML
18 lines
417 B
YAML
version: v1.0
|
|
name: Python
|
|
agent:
|
|
machine:
|
|
type: e1-standard-2
|
|
os_image: ubuntu1804
|
|
blocks:
|
|
- name: Lint
|
|
task:
|
|
jobs:
|
|
- name: flake8
|
|
commands:
|
|
- sem-version python 3.8
|
|
- checkout --use-cache
|
|
- python -m pip install --upgrade poetry
|
|
- poetry install
|
|
- git diff origin/master | poetry run flake8 --diff
|