We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ad96ad0 commit 7222bdbCopy full SHA for 7222bdb
PSScriptAnalyzer.yaml .github/workflows/CI.ymlPSScriptAnalyzer.yaml renamed to .github/workflows/CI.yml
@@ -1,3 +1,23 @@
1
+name: Python CI
2
+
3
+on: [push, pull_request]
4
5
+jobs:
6
+ build:
7
+ runs-on: ubuntu-latest
8
+ steps:
9
+ - uses: actions/checkout@v5
10
+ - name: Set up Python
11
+ uses: actions/setup-python@v4
12
+ with:
13
+ python-version: $PYTHON_VERSION
14
+ - name: Install dependencies
15
+ run: pip install openpyxl pandas
16
+ - name: Test scripts
17
+ run: |
18
+ python ai/engine.py
19
+ python teleport/teleport_sim.py
20
21
lint-with-PSScriptAnalyzer:
22
name: Install and run PSScriptAnalyzer
23
runs-on: ubuntu-latest
0 commit comments