Delete app/programs/cruce_pagina_ecommerce directory #119
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: checks | |
on: | |
push: | |
branches: | |
- master | |
pull_request: | |
branches: | |
- master | |
jobs: | |
test: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v2 | |
- name: Build Docker images | |
run: make build | |
- name: Test running functionality | |
run: | | |
docker-compose up --detach | |
docker-compose down | |
lint: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v2 | |
- name: Set up Python | |
uses: actions/setup-python@v1 | |
with: | |
python-version: '3.8' | |
- name: Set up Poetry | |
run: | | |
make get-poetry | |
echo $HOME/.poetry/bin >> $GITHUB_PATH | |
- name: Install dependencies | |
run: poetry install | |
- name: Lint with Black | |
run: make black | |
- name: Lint with isort | |
run: make isort |