Skip to content

Bump django from 4.2.11 to 4.2.15 #123

Bump django from 4.2.11 to 4.2.15

Bump django from 4.2.11 to 4.2.15 #123

Workflow file for this run

name: test
on: push
jobs:
test:
runs-on: ubuntu-latest
strategy:
matrix:
python_version: ["3.11", "3.12"]
name: Python ${{ matrix.python-version }}
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Cache Poetry
uses: actions/cache@v3
with:
path: .venv
key: ${{ runner.os }}-${{ matrix.python_version }}-poetry-${{ hashFiles('poetry.lock') }}
- name: Set up Python
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python_version }}
- name: Set up Poetry
uses: snok/[email protected]
with:
virtualenvs-in-project: true
- name: Install dependencies
run: |
poetry install
- name: Run test
run: |
poetry run pytest