Skip to content

README atualizado close #37 (#38) #85

README atualizado close #37 (#38)

README atualizado close #37 (#38) #85

Workflow file for this run

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:12
env:
POSTGRES_USER: postgres
POSTGRES_PASSWORD: postgres
POSTGRES_DB: postgres
ports: ['5432:5432']
steps:
- uses: actions/checkout@v2
- name: Set up Python 3.10
uses: actions/setup-python@v4
with:
python-version: '3.10'
- name: Install dependencies
run: |
pip install pipenv
pipenv sync --dev
cp contrib/env-sample .env
- name: Lint with flake8
run: |
pipenv run flake8 .
- name: Test with pytest
run: |
pipenv run pytest --cov=pypro
deploy:
name: Deploy
runs-on: ubuntu-latest
needs: build
env:
FLY_API_TOKEN: ${{ secrets.FLY_API_TOKEN }}
steps:
- uses: actions/checkout@v3
- uses: superfly/flyctl-actions/setup-flyctl@master
- run: flyctl deploy --remote-only