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 03c44eb commit 181cf1aCopy full SHA for 181cf1a
1 file changed
.github/workflows/ci.yml
@@ -0,0 +1,23 @@
1
+name: CI
2
+
3
+on:
4
+ push:
5
+ branches: [ main ]
6
+ pull_request:
7
8
+jobs:
9
+ test:
10
+ runs-on: ubuntu-latest
11
+ steps:
12
+ - uses: actions/checkout@v4
13
14
+ - name: Set up Python 3.12
15
+ uses: actions/setup-python@v5
16
+ with:
17
+ python-version: '3.12'
18
19
+ - name: Install test runner
20
+ run: pip install pytest
21
22
+ - name: Run static contract tests
23
+ run: python -m pytest tests/test_phase5_ui_contract.py tests/test_phase5_operator_views.py -v
0 commit comments