This repository has been archived by the owner on Aug 16, 2024. It is now read-only.
Bump django from 5.0.2 to 5.0.6 #174
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# 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 |