Skip to content

Commit

Permalink
Move ci/test job to test workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
itskingori committed Oct 16, 2024
1 parent 013beb3 commit 5866c16
Show file tree
Hide file tree
Showing 2 changed files with 42 additions and 55 deletions.
55 changes: 0 additions & 55 deletions .github/workflows/ci.yml

This file was deleted.

42 changes: 42 additions & 0 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -110,3 +110,45 @@ jobs:
run: |
source .venv/bin/activate
pylint $(git ls-files -- '*.py' ':!:**/migrations/*.py')
pytest:
runs-on: ubuntu-latest
services:
redis:
image: redis:6
ports: ['6379:6379']
rabbitmq:
image: rabbitmq:3
ports: ['5672:5672']
strategy:
matrix:
broker: [memory, redis, rabbitmq]
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Set Up Python
uses: actions/setup-python@v5
id: setup-python
with:
python-version: 3.12
- name: Install Poetry
uses: snok/install-poetry@v1
with:
virtualenvs-create: true
virtualenvs-in-project: true
installer-parallel: true
- name: Load Cached Venv
id: cached-poetry-dependencies
uses: actions/cache@v4
with:
path: .venv
key: venv-${{ runner.os }}-${{ steps.setup-python.outputs.python-version }}-${{ hashFiles('**/poetry.lock') }}
- name: Install Dependencies
if: steps.cached-poetry-dependencies.outputs.cache-hit != 'true'
run: |
poetry install --no-interaction --no-root
source .venv/bin/activate
- name: Run Pytest
run: |
source .venv/bin/activate
pytest --broker=${{ matrix.broker }} --ignore .poetry --cov

0 comments on commit 5866c16

Please sign in to comment.