[Feature]support to detect a model as non-breaking change #498
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: Test Python | |
on: | |
push: | |
branches: | |
- main | |
paths: | |
- "recce/**" # Recce OSS codebase | |
- "tests/**" # Recce OSS python unit tests | |
pull_request: | |
branches: | |
- main | |
paths: | |
- "recce/**" # Recce OSS codebase | |
- "tests/**" # Recce OSS python unit tests | |
- "setup.py" | |
jobs: | |
test-python: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Set up Python | |
uses: actions/setup-python@v2 | |
with: | |
python-version: '3.10' | |
cache: "pip" # caching pip dependencies | |
cache-dependency-path: setup.py | |
- name: Install flake8 | |
run: pip install flake8 | |
- name: Run flake8 | |
run: make flake8 | |
- name: Cache tox environments | |
uses: actions/cache@v2 | |
with: | |
path: .tox | |
key: ${{ runner.os }}-tox-${{ hashFiles('tox.ini') }}-3.10 | |
restore-keys: | | |
${{ runner.os }}-tox-${{ hashFiles('tox.ini') }}- | |
${{ runner.os }}-tox- | |
- name: Run tests | |
run: | | |
make test-tox | |
- name: Upload coverage reports to Codecov | |
uses: codecov/codecov-action@v5 | |
with: | |
token: ${{ secrets.CODECOV_TOKEN }} |