File tree Expand file tree Collapse file tree 1 file changed +26
-0
lines changed Expand file tree Collapse file tree 1 file changed +26
-0
lines changed Original file line number Diff line number Diff line change 54
54
- name : Check typing
55
55
working-directory : ${{ matrix.lib }}
56
56
run : poetry run mypy --install-types --non-interactive --strict $(echo "${{ matrix.lib }}" | tr "-" "_")
57
+
58
+ security :
59
+ runs-on : ubuntu-latest
60
+ strategy :
61
+ matrix :
62
+ lib :
63
+ - scaleway-core
64
+ - scaleway
65
+ - scaleway-async
66
+ steps :
67
+ - uses : actions/checkout@v2
68
+ - name : Set up Python
69
+ uses : actions/setup-python@v2
70
+ with :
71
+ python-version : 3.8
72
+ - name : Install poetry
73
+ working-directory : ${{ matrix.lib }}
74
+ run : |
75
+ pip install poetry
76
+ poetry --version
77
+ - name : Install dependencies
78
+ working-directory : ${{ matrix.lib }}
79
+ run : poetry install --no-root
80
+ - name : Check security
81
+ working-directory : ${{ matrix.lib }}
82
+ run : poetry run bandit -sB105 -r .
You can’t perform that action at this time.
0 commit comments