Skip to content

Commit 9f670ec

Browse files
authored
Create test.yml
1 parent 42dd51b commit 9f670ec

1 file changed

Lines changed: 20 additions & 0 deletions

File tree

.github/workflows/test.yml

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
name: Physics Validation Suite
2+
3+
on: [push]
4+
5+
jobs:
6+
build:
7+
runs-on: ubuntu-latest
8+
steps:
9+
- uses: actions/checkout@v3
10+
- name: Set up Python 3.9
11+
uses: actions/setup-python@v4
12+
with:
13+
python-version: "3.9"
14+
- name: Install dependencies
15+
run: |
16+
python -m pip install --upgrade pip
17+
pip install -r requirements.txt
18+
- name: Run Validations
19+
run: |
20+
python -m unittest main.py

0 commit comments

Comments
 (0)