Skip to content
This repository has been archived by the owner on Aug 16, 2024. It is now read-only.

Make media-query sponsor logo height for gold consistent #144

Make media-query sponsor logo height for gold consistent

Make media-query sponsor logo height for gold consistent #144

Workflow file for this run

# This workflow will install Python dependencies, run tests and lint with a single version of Python
# For more information see: https://help.github.com/actions/language-and-framework-guides/using-python-with-github-actions
name: CI/CD
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
jobs:
test_netlify:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Set up Python 3.10.4
uses: actions/setup-python@v4
with:
python-version: 3.10.4
- name: Install poetry
uses: abatilo/actions-poetry@v2.0.0
with:
poetry-version: 1.4.2
- name: Install dependencies
run: |
poetry install
- name: Test Netlify Build Command
run: |
poetry run python manage.py migrate
poetry run python manage.py netlify_build
test_static_assets:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v2
- uses: extractions/setup-just@v1
- name: Build image
run: just build
- name: Test Collect Static Checks
run: |
just manage collectstatic --no-input
just manage assets build
lint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Set up Python 3.10.4
uses: actions/setup-python@v4
with:
python-version: 3.10.4
- uses: pre-commit/action@v3.0.0