Skip to content

fix data type

fix data type #356

Workflow file for this run

name: Pull requests Lint/Test
on: pull_request
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v1
- name: Set up Python 3.9
uses: actions/setup-python@v1
with:
python-version: 3.9
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install pipenv==2023.9.8
pipenv install --system --dev
- name: Lint
run: make lint
- name: Test with pytest
run: export PYTHONPATH=./bot && pytest