We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent af124ad commit b437b6fCopy full SHA for b437b6f
1 file changed
.github/workflows/ci.yml
@@ -4,11 +4,13 @@ jobs:
4
Explore-GitHub-Actions:
5
runs-on: ubuntu-latest
6
steps:
7
+ - name: Install dependencies
8
+ run: pip install black isort poetry
9
- name: Formatting
- - run: pip install black isort
- - run: black substack
10
- - run: isort substack
+ run: |
11
+ black substack
12
+ isort substack
13
- name: Build and Publish
- - run: pip install poetry
- - run: poetry version patch
14
- - run: poetry publish --build
15
+ poetry version patch
16
+ poetry publish --build
0 commit comments