Skip to content

Build our own SCSS so we have control over styling #61

Build our own SCSS so we have control over styling

Build our own SCSS so we have control over styling #61

Workflow file for this run

name: Django CI
on:
push:
branches: [main]
pull_request:
branches: [main]
jobs:
build:
runs-on: ubuntu-latest
environment: test
strategy:
max-parallel: 4
matrix:
python-version: [3.11]
steps:
- uses: actions/checkout@v4
- name: Install poetry
run: pipx install poetry
- uses: actions/setup-python@v5
with:

Check failure on line 24 in .github/workflows/django.yml

View workflow run for this annotation

GitHub Actions / .github/workflows/django.yml

Invalid workflow file

You have an error in your yaml syntax on line 24
python-version: 3.11
cache: poetry
- run: poetry install
- name: Run Tests
run: |
poetry run python manage.py test