We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f9178f8 commit 2a7743eCopy full SHA for 2a7743e
.github/workflows/push.yml
@@ -0,0 +1,30 @@
1
+name: Check Commit
2
+on:
3
+ push:
4
+
5
+jobs:
6
+ format:
7
+ runs-on: ubuntu-latest
8
+ strategy:
9
+ matrix:
10
+ lib:
11
+ - scaleway-core
12
+ - scaleway
13
+ - scaleway-async
14
+ steps:
15
+ - uses: actions/checkout@v2
16
+ - name: Set up Python
17
+ uses: actions/setup-python@v2
18
+ with:
19
+ python-version: 3.8
20
+ - name: Install poetry
21
+ working-directory: ${{ matrix.lib }}
22
+ run: |
23
+ pip install poetry
24
+ poetry --version
25
+ - name: Install dependencies
26
27
+ run: poetry install --no-root
28
+ - name: Check format
29
30
+ run: poetry run black --check .
0 commit comments