Skip to content

Extraido a chave secreta #31

Extraido a chave secreta

Extraido a chave secreta #31

Workflow file for this run

name: Curso Django
on: [push]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Set up Python 3.10.7
uses: actions/setup-python@v2
with:
python-version: 3.10.7
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install -q pipenv
pipenv sync -d
cp contrib/env-sample .env
- name: Lint with flake8
run: |
pipenv run flake8 .
- name: Tests with pytest
run: |
pipenv run pytest --cov=pypro --cov-report=xml
- name: Upload coverage reports to Codecov with GitHub Action...
uses: codecov/codecov-action@v3