Skip to content

documentation changed #1

documentation changed

documentation changed #1

Workflow file for this run

name: Python application
on:
push:
branches: [ "master" ]
pull_request:
branches: [ "master" ]
permissions:
contents: read
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Set up Python 3.8
uses: actions/setup-python@v3
with:
python-version: "3.8"
- name: Install dependencies
run: |
# python -m pip install --upgrade pip
pip install -r requirements.txt
- name: Launch a PostgreSQL
run: |
sudo service postgresql start
- name: Lint with flake8
run: |
flake8 ./app \
--max-line-length=120