Skip to content

Fix unnecessary delay after saving data when guild data doesn't exist #11

Fix unnecessary delay after saving data when guild data doesn't exist

Fix unnecessary delay after saving data when guild data doesn't exist #11

Workflow file for this run

name: Coverage Report
on:
push:
branches:
- master
- dev
pull_request:
branches:
- master
- dev
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v1
- name: Set up Python
uses: actions/setup-python@v1
with:
python-version: 3.9
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install -U -e .
pip install coverage
- name: Test
run: |
coverage run setup.py test
- name: Coverage Report
run: |
coverage report
coverage xml
- name: Upload to Codecov
uses: codecov/codecov-action@v1