Skip to content

Bump psycopg2-binary from 2.9.5 to 2.9.6 #27

Bump psycopg2-binary from 2.9.5 to 2.9.6

Bump psycopg2-binary from 2.9.5 to 2.9.6 #27

Workflow file for this run

name: Test Application
on:
pull_request:
branches: [master]
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ["3.7", "3.8", "3.9", "3.10"]
name: Python ${{ matrix.python-version }}
steps:
- uses: actions/checkout@v3
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: |
make init
- name: Test with pytest and Build coverage
run: |
make coverage
- name: Upload coverage
uses: codecov/codecov-action@v3
with:
token: ${{ secrets.CODECOV_TOKEN }}
fail_ci_if_error: false
lint:
runs-on: ubuntu-latest
name: Lint
steps:
- uses: actions/checkout@v3
- name: Set up Python 3.8
uses: actions/setup-python@v4
with:
python-version: 3.8
- name: Intall Flake8
run: |
pip install flake8
- name: Lint
run: make lint