We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 054a839 commit eeca608Copy full SHA for eeca608
1 file changed
.github/workflows/analysis.yml
@@ -0,0 +1,30 @@
1
+name: Analysis CI
2
+
3
+on:
4
+ push:
5
+ branches: [ main ]
6
+ pull_request:
7
8
9
+jobs:
10
+ analysis:
11
+ runs-on: ubuntu-latest
12
13
+ steps:
14
+ - name: Checkout repository
15
+ uses: actions/checkout@v4
16
+ with:
17
+ submodules: true
18
19
+ - name: Set up Python 3.11
20
+ uses: actions/setup-python@v5
21
22
+ python-version: '3.11'
23
24
+ - name: Install dependencies
25
+ run: |
26
+ python -m pip install --upgrade pip
27
+ pip install pytest pytest-cov pylint mypy bandit radon black
28
29
+ - name: Run all analysis
30
+ run: ./run_all.sh
0 commit comments