Skip to content

Bump postcss-nested from 6.2.0 to 7.0.2 in /src/theme/static_src #112

Bump postcss-nested from 6.2.0 to 7.0.2 in /src/theme/static_src

Bump postcss-nested from 6.2.0 to 7.0.2 in /src/theme/static_src #112

Workflow file for this run

name: Tests
on:
push:
branches: [ "main" ]
pull_request:
jobs:
django-checks:
runs-on: ubuntu-latest
strategy:
max-parallel: 4
matrix:
python-version:
- '3.11'
- '3.12'
- '3.13.0-rc.2'
steps:
- uses: actions/checkout@v4
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
- name: Install Dependencies
run: |
python -m pip install --upgrade pip
pip install -r requirements.txt
- name: Run Tests
run: |
python src/manage.py test
- name: Run Django Check
run: |
python src/manage.py check
- name: Check migrations
run: |
python src/manage.py makemigrations --check