Skip to content

Commit b437b6f

Browse files
committed
fix ci
1 parent af124ad commit b437b6f

1 file changed

Lines changed: 8 additions & 6 deletions

File tree

.github/workflows/ci.yml

Lines changed: 8 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -4,11 +4,13 @@ jobs:
44
Explore-GitHub-Actions:
55
runs-on: ubuntu-latest
66
steps:
7+
- name: Install dependencies
8+
run: pip install black isort poetry
79
- name: Formatting
8-
- run: pip install black isort
9-
- run: black substack
10-
- run: isort substack
10+
run: |
11+
black substack
12+
isort substack
1113
- name: Build and Publish
12-
- run: pip install poetry
13-
- run: poetry version patch
14-
- run: poetry publish --build
14+
run: |
15+
poetry version patch
16+
poetry publish --build

0 commit comments

Comments
 (0)