Skip to content

Commit

Permalink
Added Github actions
Browse files Browse the repository at this point in the history
  • Loading branch information
ninabarzh committed Jul 26, 2024
1 parent dd926cc commit 6bca76e
Showing 1 changed file with 30 additions and 0 deletions.
30 changes: 30 additions & 0 deletions .github/workflows/python-app.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,30 @@
name: Python flask application

on:
push:
branches:
- main

jobs:
build:
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v4
- name: Set up Python 3.11
uses: actions/setup-python@v5
with:
python-version: "3.11"
cache: 'pip'
- name: Install dependencies
run: |
python -m pip install --upgrade pip
if [ -f requirements.txt ]; then pip install -r requirements.txt; fi
- name: Static analysis
run: |
pip install flake8
flake8 --max-line-length=150 --ignore=E266 *.py project/*.py project/*/routes.py
- name: Test with pytest
run: |
pip install pytest
pytest --cov-report term-missing --cov=project

0 comments on commit 6bca76e

Please sign in to comment.