Skip to content

build(deps): bump actions/checkout from 4 to 5 #252

build(deps): bump actions/checkout from 4 to 5

build(deps): bump actions/checkout from 4 to 5 #252

Workflow file for this run

name: Integration Tests
on:
- push
- pull_request
jobs:
django:
runs-on: ubuntu-latest
if: ${{ !startsWith(github.ref, 'refs/tags') }}
strategy:
fail-fast: false
steps:
- uses: actions/checkout@v5
with:
fetch-depth: 0
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: '3.x'
- name: Install dependencies
run: python3 -m pip install hatch
- name: Test
run: hatch run integration:django