ProtonDataLabs commited on
Commit
3900b17
·
unverified ·
1 Parent(s): c346e3d

Create ci.yml

Browse files
Files changed (1) hide show
  1. .github/workflows/ci.yml +22 -0
.github/workflows/ci.yml ADDED
@@ -0,0 +1,22 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ name: CI Pipeline
2
+
3
+ on:
4
+ push:
5
+ branches: [main]
6
+ pull_request:
7
+ branches: [main]
8
+
9
+ jobs:
10
+ test:
11
+ runs-on: ubuntu-latest
12
+
13
+ steps:
14
+ - uses: actions/checkout@v3
15
+
16
+ - name: Set up Python
17
+ uses: actions/setup-python@v4
18
+ with:
19
+ python-version: '3.x'
20
+
21
+ - name: Run calculator script
22
+ run: python calculator.py