Skip to content

Commit 7222bdb

Browse files
Update and rename PSScriptAnalyzer.yaml to .github/workflows/CI.yml
1 parent ad96ad0 commit 7222bdb

File tree

1 file changed

+20
-0
lines changed

1 file changed

+20
-0
lines changed
Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -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+
121
lint-with-PSScriptAnalyzer:
222
name: Install and run PSScriptAnalyzer
323
runs-on: ubuntu-latest

0 commit comments

Comments
 (0)