Skip to content

Don't floor output values but round to one digit #56

Don't floor output values but round to one digit

Don't floor output values but round to one digit #56

Workflow file for this run

name: Checks
on: push
jobs:
check:
runs-on: ubuntu-20.04
steps:
- name: Check out repository code
uses: actions/checkout@v4
- name: Setup Python
uses: actions/setup-python@v4
with:
python-version: "3.8.0"
- name: Install pipenv
run: |
python -m pip install --upgrade pipenv wheel
- name: Install dependencies
run: |
pipenv install --deploy --dev
- name: Run vulnerability check
run: |
pipenv check
- name: Run test suite
run: |
pipenv run test -v