From 8a4a9d5e200dc16fe738ddcf8be152c6fc7e4faf Mon Sep 17 00:00:00 2001 From: hemohr Date: Mon, 25 Oct 2021 12:53:47 -0300 Subject: [PATCH 1/3] Adicionando pipeline --- .github/workflows/pipeline.yml | 73 ++++++++++++++++++++++++++++++++++ 1 file changed, 73 insertions(+) create mode 100644 .github/workflows/pipeline.yml diff --git a/.github/workflows/pipeline.yml b/.github/workflows/pipeline.yml new file mode 100644 index 000000000..e2464611c --- /dev/null +++ b/.github/workflows/pipeline.yml @@ -0,0 +1,73 @@ +name: CI - Lint / Tests / Deploy + +on: [push] + +jobs: + + lint: + runs-on: ubuntu-20.04 + + 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 flake8 + + - name: Lint with flake8 + run: | + # stop the build if there are Python syntax errors or undefined names + flake8 . --count --select=E9,F63,F7,F82 --show-source --statistics + # exit-zero treats all errors as warnings. The GitHub editor is 127 chars wide + flake8 . --count --exit-zero --max-complexity=10 --max-line-length=127 --statistics + + tests: + needs: lint + runs-on: ubuntu-20.04 + strategy: + matrix: + python-version: [3.5, 3.6, 3.7, 3.8, 3.9] + + steps: + - uses: actions/checkout@v2 + + - name: Set up Python ${{ matrix.python-version }} + uses: actions/setup-python@v2 + with: + python-version: ${{ matrix.python-version }} + + - name: Install dependencies + run: | + python -m pip install --upgrade pip + pip install flake8 pytest + if [ -f requirements.txt ]; then pip install -r requirements.txt; fi + + - name: Integrations Test + run: | + python test.py + + + deploy: + needs: tests + runs-on: ubuntu-20.04 + + steps: + - uses: actions/checkout@v2 + + - name: Set up Python 3.9 + uses: actions/setup-python@v2 + with: + python-version: 3.9 + + - name: deploy into heroku + uses: akhileshns/heroku-deploy@v3.12.12 + with: + heroku_api_key: ${{secrets.HEROKU_API_KEY}} + heroku_app_name: ${{secrets.HEROKU_APP_NAME}} + heroku_email: ${{secrets.HEROKU_USER_EMAIL}} \ No newline at end of file From 60cdb7292774bab74aeefab08624b58c9bb8c109 Mon Sep 17 00:00:00 2001 From: hemohr Date: Mon, 3 Jan 2022 17:06:11 -0300 Subject: [PATCH 2/3] =?UTF-8?q?Alterando=20o=20cabe=C3=A7alho?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- templates/index.html | 2 +- test.py | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/templates/index.html b/templates/index.html index c7548e320..eb6b4ba0f 100644 --- a/templates/index.html +++ b/templates/index.html @@ -10,7 +10,7 @@ -
Escreva uma Mensagem para o Cabecalho da Pagina.
+
Pipeline - Devops - Henrique