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

fix(deps): update dependency bootstrap to v5 #110

fix(deps): update dependency bootstrap to v5

fix(deps): update dependency bootstrap to v5 #110

Workflow file for this run

name: Test
on:
push:
branches: [main]
pull_request:
types: [opened, reopened, synchronize, edited]
branches: [main]
jobs:
pre-commit:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-python@v5
with:
python-version: "3.x"
- uses: pre-commit/[email protected]
python:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ["3.9", "3.10", "3.11"]
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 tblib
if [ -f requirements.txt ]; then pip install -r requirements.txt; fi
- name: Test with django
run: |
python3 ./manage.py test --parallel 5