mirror of
https://github.com/wassname/optuna-dashboard.git
synced 2026-08-28 12:53:04 +08:00
Run tests and linters on GitHub Action
This commit is contained in:
@@ -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
|
||||
Reference in New Issue
Block a user