Skip to content

chore(deps): bump django from 3.2.24 to 3.2.25 in /example/django #475

chore(deps): bump django from 3.2.24 to 3.2.25 in /example/django

chore(deps): bump django from 3.2.24 to 3.2.25 in /example/django #475

Workflow file for this run

name: build
on:
push:
branches: [master]
pull_request:
branches: [master]
jobs:
build:
name: build
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
python-version: [3.8, 3.9]
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Python ${{ matrix.python-version }}
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: make deps
- name: Run tests
run: nox -s test-${{ matrix.python-version }}