Skip to content

Updating doc to match use case example #11

Updating doc to match use case example

Updating doc to match use case example #11

Workflow file for this run

name: CI workflow
on:
push:
branches: [ "main" ]
pull_request:
branches: [ "main" ]
jobs:
ci:
runs-on: ubuntu-latest
container: tensorflow/tensorflow:2.14.0
defaults:
run:
working-directory: ./src
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Install dependencies
run: pip install -r requirements.txt --ignore-installed
- name: Lint
run: flake8 *.py
- name: Run tests
run: coverage run -m pytest
- name: Coverage
run: coverage report -m