show more lines info in plugin check result when limit reached #301
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Python Application | |
on: [push, pull_request] | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- name: checkout actions | |
uses: actions/checkout@v1 | |
- name: Set up Python 3.6 | |
uses: actions/setup-python@v1 | |
with: | |
python-version: 3.6 | |
- name: run unittest python36 | |
run: | | |
pip3 install -r requirements.txt | |
pip3 install -e .[testing] | |
python3.6 setup.py test | |
- name: build dist | |
run: | | |
pip3 install wheel | |
python3.6 setup.py bdist_wheel |