Skip to content

Bump sqlparse from 0.4.2 to 0.4.4 #25

Bump sqlparse from 0.4.2 to 0.4.4

Bump sqlparse from 0.4.2 to 0.4.4 #25

Workflow file for this run

name: M.F. Interview Project
on: [push]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@master
- name: Set up Python 3.8
uses: actions/setup-python@master
with:
python-version: 3.8
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install -r requirements.txt
- name: Check code formatting
run: |
black --check finance_blog/
- name: Test with pytest
run: |
pytest
- name: Upload coverage to Codecov
uses: codecov/codecov-action@v1
with:
token: ${{ secrets.CODECOV_TOKEN }}
file: ./coverage.xml
flags: unittests
name: codecov-umbrella
yml: ./codecov.yml
fail_ci_if_error: true