added workfloqws, upgraded vwersion, and added tests
Some checks failed
Pack Validation CI / validate (push) Failing after 7s

This commit is contained in:
2026-05-19 16:32:29 -05:00
parent 15e11f7450
commit 2b72e7bf5a
4 changed files with 223 additions and 1 deletions

28
.gitea/workflows/ci.yml Normal file
View File

@@ -0,0 +1,28 @@
name: Pack Validation CI
on:
push:
branches: ["main"]
pull_request:
branches: ["main"]
jobs:
validate:
runs-on: ubuntu-latest
steps:
- name: Checkout Code
uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: "3.11"
- name: Install Test Dependencies
run: |
python -m pip install --upgrade pip
pip install pytest
- name: Run Pack Verification Suite
run: python -m pytest tests/ -v