Skip to content

Commit eeca608

Browse files
committed
Added CI configuration
1 parent 054a839 commit eeca608

1 file changed

Lines changed: 30 additions & 0 deletions

File tree

.github/workflows/analysis.yml

Lines changed: 30 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,30 @@
1+
name: Analysis CI
2+
3+
on:
4+
push:
5+
branches: [ main ]
6+
pull_request:
7+
branches: [ main ]
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+
with:
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

Comments
 (0)