Skip to content

Commit

Permalink
Fix tests ci
Browse files Browse the repository at this point in the history
  • Loading branch information
ivarflakstad committed Mar 12, 2024
1 parent 065932a commit daa8c2f
Showing 1 changed file with 7 additions and 7 deletions.
14 changes: 7 additions & 7 deletions .github/workflows/tests.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ jobs:
strategy:
max-parallel: 4
matrix:
python-version: ["3.10", "3.11"]
python-version: "3.11"

services:
postgres:
Expand All @@ -26,17 +26,17 @@ jobs:
steps:
- uses: actions/checkout@v2

- name: Setup Python ${{ matrix.python-version }}
- name: Setup Python
uses: actions/setup-python@v2
with:
python-version: ${{ matrix.python-version }}
cache: 'pip'
cache-dependency-path: '**/requirements/development.txt'
python-version: "3.11"
cache: 'poetry'
cache-dependency-path: 'poetry.lock'

- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install -r app/requirements/development.txt
python -m pip install poetry
poetry install
- name: Run tests
env:
Expand Down

0 comments on commit daa8c2f

Please sign in to comment.