Skip to content

Commit

Permalink
changed pipeline
Browse files Browse the repository at this point in the history
  • Loading branch information
Attumm committed May 15, 2024
1 parent da96f72 commit 73a9001
Showing 1 changed file with 10 additions and 0 deletions.
10 changes: 10 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,13 @@ permissions:
jobs:
build:
runs-on: ${{ matrix.os }}

services:
redis:
image: redis
ports:
- 6379:6379

strategy:
matrix:
os: [ubuntu-latest]
Expand All @@ -26,6 +33,7 @@ jobs:
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}

- name: Install dependencies
run: |
pip install --upgrade pip setuptools
Expand All @@ -38,9 +46,11 @@ jobs:
- name: Run Pylama
run: |
pylama * -i E501
- name: Run Unit Tests
run: |
coverage run -m unittest discover
- name: Upload coverage reports to Codecov, send only once
if: matrix.python-version == '3.12'
uses: codecov/[email protected]
Expand Down

0 comments on commit 73a9001

Please sign in to comment.