Skip to content

Commit

Permalink
Restructure
Browse files Browse the repository at this point in the history
  • Loading branch information
Sleitnick committed Dec 10, 2024
1 parent 7130007 commit 422eeac
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 12 deletions.
22 changes: 11 additions & 11 deletions .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -47,6 +47,17 @@ jobs:
- name: Install Aftman
uses: ok-nick/[email protected]

- name: Install Python
uses: actions/setup-python@v5
with:
python-version: "3.13"

- name: Install Python dependencies
run: pip install -r requirements.txt

- name: Run test builder
run: python build_tests.py

- name: Build place file
run: rojo build -o test.rbxl test.project.json

Expand All @@ -58,17 +69,6 @@ jobs:
API_KEY: ${{ secrets.RBXCLOUD_API_KEY }}
FILE: test.rbxl
run: rbxcloud experience publish -a "$API_KEY" -u "$UID" -p "$PID" -t published -f "$FILE"

- name: Install Python
uses: actions/setup-python@v5
with:
python-version: "3.13"

- name: Install Python dependencies
run: pip install -r requirements.txt

- name: Run test builder
run: python build_tests.py

- name: Run tests
env:
Expand Down
2 changes: 1 addition & 1 deletion build_tests.py
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ def update_test_file(test_path, original_src_path):

class WatchHandler(PatternMatchingEventHandler):
def __init__(self):
PatternMatchingEventHandler.__init__(self, patterns=["*.lua"], ignore_directories=True, case_sensitive=False)
PatternMatchingEventHandler.__init__(self, patterns=["*.luau"], ignore_directories=True, case_sensitive=False)
def on_modified(self, event):
original_src_path = event.src_path
if original_src_path in files_locked:
Expand Down

0 comments on commit 422eeac

Please sign in to comment.