Pillow/.github/workflows/lint.yml

30 lines
565 B
YAML
Raw Normal View History

2019-08-31 10:23:47 +03:00
name: Lint
on: [push, pull_request]
2019-08-31 10:23:47 +03:00
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
2019-09-22 17:09:27 +03:00
python-version: ["3.7"]
2019-08-31 10:23:47 +03:00
2019-09-22 17:09:27 +03:00
name: Python ${{ matrix.python-version }}
2019-09-02 11:24:20 +03:00
2019-08-31 10:23:47 +03:00
steps:
- uses: actions/checkout@v1
2019-09-22 17:09:27 +03:00
- name: Set up Python ${{ matrix.python-version }}
2019-08-31 10:23:47 +03:00
uses: actions/setup-python@v1
with:
2019-09-22 17:09:27 +03:00
python-version: ${{ matrix.python-version }}
2019-08-31 10:23:47 +03:00
- name: Install dependencies
run: |
python -m pip install --upgrade pip
python -m pip install --upgrade tox
- name: Lint
run: tox -e lint