Skip to content

Commit

Permalink
πŸ’š Upgrade black to fix pipeline (#78)
Browse files Browse the repository at this point in the history
Co-authored-by: hasnain095 <hasnain095@github.com>
  • Loading branch information
hasnain095 and hasnain095 committed Apr 3, 2023
1 parent cee0a7d commit 841690e
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 5 deletions.
12 changes: 8 additions & 4 deletions .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
@@ -1,6 +1,10 @@
name: CI

on: [push]
on:
push:
branches: ["main"]
pull_request:
branches: ["main"]

jobs:
tests:
Expand All @@ -21,15 +25,15 @@ jobs:
- 6379:6379
steps:
- name: Checkout working branch
uses: actions/checkout@v2
uses: actions/checkout@v3

- name: Set up Python 3.8
uses: actions/setup-python@v2
uses: actions/setup-python@v3
with:
python-version: 3.8

- name: Cache pip
uses: actions/cache@v2
uses: actions/cache@v3
with:
path: ~/.cache/pip
key: ${{ runner.os }}-pip-${{ hashFiles('**/requirements.txt') }}
Expand Down
2 changes: 1 addition & 1 deletion users/requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ pytest-asyncio==0.15.0
pytest-cov==2.11.1
flake8==3.9.1
isort==5.8.0
black==20.8b1
black==22.3.0
mypy==0.812
httpx==0.17.1
asgi-lifespan==1.0.1
Expand Down

0 comments on commit 841690e

Please sign in to comment.