Skip to content

[PROD] GitHub Pages added nbconvert + HTML file #2

[PROD] GitHub Pages added nbconvert + HTML file

[PROD] GitHub Pages added nbconvert + HTML file #2

Workflow file for this run

name: Tests CI
on:
pull_request:
branches:
- main
paths-ignore:
- '**/README.md'
- '**/CONTRIBUTING.md'
- '**/CODE_OF_CONDUCT.md'
- '.github/**'
- 'docs/**'
- '**/.editorconfig'
- '**/.gitignore'
- '**/LICENSE'
- '**/CREDITS'
jobs:
tests:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Set up Python 3.9
uses: actions/setup-python@v2
with:
python-version: 3.9
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install -r requirements.txt
# Gerar o arquivo .env
echo "SERVER_URL=https://economia.awesomeapi.com.br" > .env
- name: Run tests
run: pytest