Skip to content

Commit

Permalink
feat: Add ability to send transactional Push Notifications
Browse files Browse the repository at this point in the history
Fix CI
  • Loading branch information
akalex committed Dec 1, 2023
1 parent 82068a0 commit ef3ba84
Showing 1 changed file with 2 additions and 7 deletions.
9 changes: 2 additions & 7 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -34,13 +34,10 @@ jobs:
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}
allow-prereleases: true

- name: virtualenv cache
uses: syphar/[email protected]
id: cache-virtualenv
with:
custom_cache_key_element: v1.2

- name: pip cache
uses: syphar/restore-pip-download-cache@v1
Expand Down Expand Up @@ -73,11 +70,9 @@ jobs:
- name: virtualenv cache
uses: syphar/[email protected]
id: cache-virtualenv
with:
custom_cache_key_element: v1.2

- name: Check code style
run: poetry run black --check --line-length=120 --diff async_customerio
run: black --check --line-length=120 --diff async_customerio

linters-mypy:
needs: create-virtualenv
Expand All @@ -98,7 +93,7 @@ jobs:
- name: Static type checker
run: |
python -m pip install types-setuptools
poetry run mypy --install-types --no-error-summary --hide-error-codes --follow-imports=skip async_customerio
mypy --install-types --no-error-summary --hide-error-codes --follow-imports=skip async_customerio
test:
needs: [ linters-black, linters-mypy ]
Expand Down

0 comments on commit ef3ba84

Please sign in to comment.