Skip to content

Commit f278d1f

Browse files
authored
Create python-test.yml
1 parent a502564 commit f278d1f

1 file changed

Lines changed: 23 additions & 0 deletions

File tree

.github/workflows/python-test.yml

Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -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

Comments
 (0)