Skip to content

Add basic Authorization to web pages #38

Add basic Authorization to web pages

Add basic Authorization to web pages #38

Workflow file for this run

name: Build workflow
on:
push:
branches:
- main
pull_request:
paths-ignore:
- '**.md'
jobs:
ci:
name: "Build"
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install -r requirements.txt
- name: Lint with flake8
run: flake8 --select=E9,F63,F7,F82 app
# disabled tests due to using unavailable api on localhost
# - name: Run unit tests with nose
# run: pytest -v