Skip to content

Commit

Permalink
Change CI configs
Browse files Browse the repository at this point in the history
  • Loading branch information
kalys committed Mar 9, 2024
1 parent 0138058 commit 20ff204
Showing 1 changed file with 5 additions and 9 deletions.
14 changes: 5 additions & 9 deletions .github/workflows/django.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,20 +22,16 @@ jobs:
# needed because the postgres container does not provide a healthcheck
options: --health-cmd pg_isready --health-interval 10s --health-timeout 5s --health-retries 5

strategy:
max-parallel: 4
matrix:
python-version: [3.12.1]

steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v3
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
python-version: '3.12'
cache: 'pipenv'
- name: Install Dependencies
run: |
python -m pip install --upgrade pip setuptools wheel
python -m pip install --upgrade pip setuptools==69.1.1 wheel
pip install --user pipenv
pipenv sync -d
- name: Run migrations
Expand Down

0 comments on commit 20ff204

Please sign in to comment.