Added database tests along with workflows

This commit is contained in:
Felipe M 2020-12-11 15:18:20 +01:00
parent b0e82fdefc
commit 3dcad9badf
Signed by: fmartingr
GPG key ID: 716BC147715E716F
6 changed files with 747 additions and 380 deletions

27
.github/workflows/black.yaml vendored Normal file
View file

@ -0,0 +1,27 @@
name: Black
on:
push:
branches: [ master, stable ]
pull_request:
branches: [ master, stable ]
jobs:
black:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Set up Python
uses: actions/setup-python@v2
with:
python-version: 3.8
- name: Install dependencies
run: |
pip install --upgrade pip
pip install black
- name: Black check
run: |
black --check butterrobot