Run tests and linters on GitHub Action

This commit is contained in:
c-bata
2020-10-26 15:58:39 +09:00
parent 7fbaacd02a
commit 2e54bf9834
+36
View File
@@ -0,0 +1,36 @@
name: Run tests and linters
on:
pull_request:
paths:
- '.github/workflows/python-tests.yml'
- '**.py'
jobs:
lint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Set up Python
uses: actions/setup-python@v2
with:
python-version: '3.x'
architecture: x64
- name: Install dependencies
run: |
python -m pip install --upgrade pip setuptools
pip install --progress-bar off .[lint]
- run: flake8 . --show-source --statistics
- run: black --check .
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Set up Python
uses: actions/setup-python@v2
with:
python-version: '3.x'
architecture: x64
- name: Install dependencies
run: pip install --progress-bar off .
- run: python setup.py test