Skip to content

fixed the syntax error for zero division error #4

fixed the syntax error for zero division error

fixed the syntax error for zero division error #4

Workflow file for this run

name: Python application
on: [push, pull_request]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Set up Python 3.8
uses: actions/setup-python@v2
with:
python-version: 3.8
- name: Install dependencies
run: |
python -m pip install --upgrade pip
- name: Run tests
run: |
python -m unittest discover -s tests