We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 42dd51b commit 9f670ecCopy full SHA for 9f670ec
1 file changed
.github/workflows/test.yml
@@ -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
20
+ python -m unittest main.py
0 commit comments