Skip to content

Bump postcss from 8.4.23 to 8.4.28 in /src/utn_tailwind_theme/static_src #603

Bump postcss from 8.4.23 to 8.4.28 in /src/utn_tailwind_theme/static_src

Bump postcss from 8.4.23 to 8.4.28 in /src/utn_tailwind_theme/static_src #603

Workflow file for this run

# This workflow will install Python dependencies, run tests and lint with a variety of Python versions
# For more information see: https://help.github.com/actions/language-and-framework-guides/using-python-with-github-actions
name: Workflow
on:
pull_request:
branches: [ development ]
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: [3.8]
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
run: python -m pip install -r dev-requirements.txt
- name: Install npm packages for tailwind
run: ./src/manage.py tailwind install
- name: Lint with flake8
run: flake8
- name: Run tests
run: ./src/manage.py test src