Skip to content

Bump tailwindcss from 3.4.15 to 3.4.17 in /app #704

Bump tailwindcss from 3.4.15 to 3.4.17 in /app

Bump tailwindcss from 3.4.15 to 3.4.17 in /app #704

Workflow file for this run

name: Run API tests
on:
pull_request:
branches:
- main
push:
branches:
- main
jobs:
test:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: [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
working-directory: ./api
run: |
python -m pip install --upgrade pip
pip install flake8
if [ -f requirements.txt ]; then pip install -r requirements.txt; fi
- name: Static Code Linting with flake8
working-directory: ./api
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
- name: Unit Testing with pytest
working-directory: ./api
run: pytest