Skip to content

Commit

Permalink
misschien zo dan?
Browse files Browse the repository at this point in the history
  • Loading branch information
viggo-devries committed Jun 23, 2023
1 parent e4dee10 commit e50db49
Showing 1 changed file with 11 additions and 4 deletions.
15 changes: 11 additions & 4 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -37,16 +37,23 @@ jobs:
django-version: ["3.2"]
oscar-version: ["3.2"]
steps:
- uses: actions/checkout@v2
- name: Set up Python ${{ matrix.python-version }}
- name: Download src dir
uses: actions/download-artifact@v2
with:
name: src
path: ./src
- name: Setup Python 3.x
uses: actions/setup-python@v2
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
python-version: ${{ matrix.python-version }}
- name: Install all dependencies
run: |
pip install -e .[dev]
pip install "django~=${{ matrix.django-version }}.0"
pip install "django-oscar~=${{ matrix.oscar-version }}.0"
make install
- name: Show all versions
run: pip list
- name: Run the testsuite
run: |
coverage run --parallel sandbox/manage.py test oscarapi --settings=sandbox.settings.block_admin_api_true
Expand Down

0 comments on commit e50db49

Please sign in to comment.