Skip to content
Open
Show file tree
Hide file tree
Changes from 12 commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
31 changes: 31 additions & 0 deletions .github/PULL_REQUEST_TEMPLATE.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,31 @@
## Description
<!-- Clearly describe what this PR changes and why. Include screenshots/GIFs if applicable -->

## Related Issue
<!-- Link to related GitHub issue (e.g. "Fixes #123", "Addresses #456") -->
-

## Type of Change
<!-- Delete options that don't apply -->
- [ ] Bug fix (non-breaking)
- [ ] New feature (non-breaking)
- [ ] Breaking change (fix/feature causing existing functionality to break)
- [ ] Refactor (non-functional changes)
- [ ] Documentation update

## Checklist
<!-- Verify completion of these steps -->
- [ ] Code follows project patterns
- [ ] Tests added/updated (if applicable)
- [ ] Documentation updated (if applicable)
- [ ] Self-review of code
- [ ] All tests pass locally
- [ ] Linter passes locally

## Deployment Notes
<!-- Special considerations for deployment (migrations, config changes, etc.) -->
-

## Additional Comments
<!-- Any other important context for reviewers -->
-
28 changes: 28 additions & 0 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@
name: Unit / Integration Tests

on:
push:
branches: [ "main" ]
pull_request:
branches: [ "main" ]

permissions:
contents: read

jobs:
build:

runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v4
- name: Set up Python 3.10
uses: actions/setup-python@v3
with:
python-version: "3.10" #Should we specify more versions?
- name: Install dependencies
run: ./install.sh
- name: Add additional dependencies
run: pip install onnxruntime_extensions transformers onnx_graphsurgeon,
- name: Run tests
run: pytest testing/core/e2e_tests/test_e2e.py
Loading