We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 1962452 commit 4da0cf5Copy full SHA for 4da0cf5
1 file changed
.github/workflows/ci.yml
@@ -0,0 +1,37 @@
1
+name: CRSM CI
2
+
3
+on:
4
+ push:
5
+ branches: [ "main" ]
6
+ pull_request:
7
8
9
+jobs:
10
+ test:
11
+ runs-on: ubuntu-latest
12
+ strategy:
13
+ matrix:
14
+ python-version: ["3.10", "3.11"]
15
16
+ steps:
17
+ - uses: actions/checkout@v3
18
19
+ - name: Set up Python ${{ matrix.python-version }}
20
+ uses: actions/setup-python@v4
21
+ with:
22
+ python-version: ${{ matrix.python-version }}
23
24
+ - name: Install dependencies
25
+ run: |
26
+ python -m pip install --upgrade pip
27
+ pip install pytest pytest-cov pytest-asyncio
28
+ pip install -r requirements.txt
29
+ pip install -e .
30
31
+ - name: Run Unit Tests
32
33
+ pytest tests/
34
35
+ - name: Run Architecture Stability Verification
36
37
+ python tests/test_architecture_stability.py
0 commit comments