Updated dependencies #3244
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Python application | |
on: | |
pull_request: | |
push: | |
branches: | |
- master | |
jobs: | |
build: | |
env: | |
PIPENV_NO_INHERIT: 1 | |
PIPENV_IGNORE_VIRTUALENVS: 1 | |
runs-on: ubuntu-latest | |
services: | |
postgres: | |
image: postgres:15.2 | |
env: | |
POSTGRES_USER: postgres | |
POSTGRES_PASSWORD: postgres | |
POSTGRES_DB: postgres | |
ports: [ '5432:5432' ] | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Set up Python 3.12 | |
uses: actions/setup-python@v4 | |
with: | |
python-version: '3.12' | |
- name: Copying configurations | |
run: | | |
cp contrib/env-sample .env | |
- name: Install dependencies | |
run: | | |
pip install pipenv | |
pipenv sync --dev | |
- name: Lint with flake8 | |
run: | | |
pipenv run flake8 . | |
- name: Test with pytest | |
run: | | |
pipenv run pytest pythonpro --cov=pythonpro --cov-report=xml --cov-report=term | |
- name: Upload coverage to Codecov | |
uses: codecov/codecov-action@v3 | |
with: | |
token: ${{ secrets.CODECOV_TOKEN }} |