Skip to content

πŸ”¨πŸŽ§ ↝ Merge pull request #49 from Signal-K/GP-8-Supabase-Unity-pass-in… #4

πŸ”¨πŸŽ§ ↝ Merge pull request #49 from Signal-K/GP-8-Supabase-Unity-pass-in…

πŸ”¨πŸŽ§ ↝ Merge pull request #49 from Signal-K/GP-8-Supabase-Unity-pass-in… #4

Workflow file for this run

name: Flask App CI
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Set up Python
uses: actions/setup-python@v2
with:
python-version: '3.x'
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install -r requirements.txt
- name: Test with pytest
run: pytest
- name: Lint with flake8
run: |
pip install flake8
flake8 . --count --select=E9,F63,F7,F82 --show-source --statistics
- name: Run Flask app
run: python app.py