Skip to content

docs (model): corrected default for tf_epochs #135

docs (model): corrected default for tf_epochs

docs (model): corrected default for tf_epochs #135

Workflow file for this run

# This workflow will install Python dependencies and run tests for computing code coverage
# Results will be uploaded to codecov
name: Code Quality
on:
push:
branches: [ master, development ]
pull_request:
branches: [ master, development ]
jobs:
coverage:
name: Coverage (codecov)
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Set up Python 3.10
uses: actions/setup-python@v2
with:
python-version: '3.10'
- name: Install dependencies
run: |
python -m pip install --upgrade pip
python -m pip install pytest
python -m pip install pytest-cov
- name: Install package
run: |
python -m pip install .
- name: Generate coverage report
run: |
pytest --cov=./ --cov-report=xml
- name: Upload coverage to Codecov
uses: codecov/codecov-action@v2
with:
token: ${{ secrets.CODECOV_TOKEN }}
files: ./coverage.xml
flags: unittests
name: codecov-umbrella
fail_ci_if_error: true
verbose: true
commitlint:
name: Commit Convention
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
with:
fetch-depth: 0
- uses: wagoid/commitlint-github-action@v4
with:
configFile: .github/commitlint.config.js