Skip to content

Improve the console output in the accuracy test #9

Improve the console output in the accuracy test

Improve the console output in the accuracy test #9

name: CI-Build
on: [push]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-python@v5
with:
python-version: 3.11
- uses: actions/cache@v1
with:
path: ~/.cache/pip
key: ${{ runner.os }}-pip-${{ hashFiles('**/requirements.txt') }}
restore-keys: |
${{ runner.os }}-pip-
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install -r requirements.txt
- name: Lint with flake8
run: |
./qa/lint-check.sh
- name: Unit tests
run: |
./qa/coverage/code-coverage.sh