1 parent a502564 commit f278d1fCopy full SHA for f278d1f
1 file changed
.github/workflows/python-test.yml
@@ -0,0 +1,23 @@
1
+name: Simulation Logic Check
2
+
3
+on: [push, pull_request]
4
5
+jobs:
6
+ build:
7
+ runs-on: ubuntu-latest
8
9
+ steps:
10
+ - uses: actions/checkout@v3
11
12
+ - name: Set up Python
13
+ uses: actions/setup-python@v4
14
+ with:
15
+ python-version: '3.10'
16
17
+ - name: Install dependencies
18
+ run: |
19
+ python -m pip install --upgrade pip
20
+ pip install pandas matplotlib pulp openpyxl
21
22
+ - name: Logic Validation
23
+ run: python main.py --test-mode # Test modunda çalıştırma flag'i ekleyebilirsin
0 commit comments