Skip to content

Use positive logic when calculating score #84

Use positive logic when calculating score

Use positive logic when calculating score #84

Workflow file for this run

name: CI
on:
- push
- pull_request
jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Set up Python
uses: actions/setup-python@v3
with:
python-version: "3.7"
- name: Install dependencies
run: |
pip install --upgrade pip
pip install -r requirements-dev.txt
- name: Lint
run: flake8 --show-source --statistics
- name: Run tests
run: pytest