Merge pull request #74 from vishnuchalla/quay-qe-testing #106
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: Code Quality Check | |
on: | |
- push | |
- pull_request | |
jobs: | |
lint-ci: | |
runs-on: ubuntu-latest | |
name: Run pre-commit and install test | |
steps: | |
- name: Check out source repository | |
uses: actions/checkout@v2 | |
- name: Set up Python environment | |
uses: actions/setup-python@v1 | |
with: | |
python-version: "3.8" | |
- name: Run pre-commit | |
uses: pre-commit/action@v2.0.3 | |
- name: Install benchmark-comparison | |
run: | | |
python setup.py develop |