Skip to content

Use new elements framework to style Django-Allauth #439

Use new elements framework to style Django-Allauth

Use new elements framework to style Django-Allauth #439

Workflow file for this run

name: ci
on:
pull_request:
push:
branches:
- master
jobs:
test-python:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ["3.10", "3.11", "3.12"]
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 tox
run: |
pip install --upgrade pip
pip install tox
- name: Run tests
run: |
tox
test-css:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Set up Node.js
uses: actions/setup-node@v4
with:
node-version: current
- name: Build and test
run: |
yarn install --frozen-lockfile
yarn run build
yarn run lint