Progress bar visuals enhancement #535
Workflow file for this run
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: precommit | |
on: | |
pull_request: | |
types: | |
- opened | |
- reopened | |
- synchronize | |
jobs: | |
common: | |
runs-on: ubuntu-20.04 | |
steps: | |
- uses: actions/checkout@v3 | |
with: | |
lfs: true | |
- uses: actions/setup-python@v3 | |
with: | |
python-version: 3.8.10 | |
- name: Install NNCF and test requirements | |
run: make install-common-test | |
- name: Run common precommit test scope | |
run: make test-common | |
env: | |
NNCF_COVERAGE: 1 | |
- name: Upload coverage report as artifact | |
uses: actions/upload-artifact@v3 | |
with: | |
name: coverage_common | |
path: ./coverage.xml | |
- name: Upload coverage report to codecov | |
uses: codecov/codecov-action@v3 | |
with: | |
token: ${{ secrets.CODECOV_TOKEN }} | |
name: coverage_common | |
onnx: | |
runs-on: ubuntu-20.04 | |
steps: | |
- uses: actions/checkout@v3 | |
with: | |
lfs: true | |
- uses: actions/setup-python@v3 | |
with: | |
python-version: 3.8.10 | |
- name: Install NNCF and test requirements | |
run: make install-onnx-test | |
- name: Run ONNX precommit test scope | |
run: make test-onnx | |
env: | |
NNCF_COVERAGE: 1 | |
- name: Upload coverage report as artifact | |
uses: actions/upload-artifact@v3 | |
with: | |
name: coverage_onnx | |
path: ./coverage.xml | |
- name: Upload coverage report to codecov | |
uses: codecov/codecov-action@v3 | |
with: | |
token: ${{ secrets.CODECOV_TOKEN }} | |
name: coverage_onnx | |