8 lines
179 B
YAML
8 lines
179 B
YAML
dist: xenial # required for Python >= 3.7
|
|
language: python
|
|
python:
|
|
- "3.7"
|
|
install:
|
|
- pip install pylint
|
|
# command to run tests
|
|
script: pylint osbuild assemblers/* stages/*
|