This commit is contained in:
Sudo-Ivan
2025-07-05 23:54:47 -05:00
parent a3ccd49439
commit f9699c060a

25
.github/workflows/test.yml vendored Normal file
View File

@@ -0,0 +1,25 @@
name: Build Test
on:
push:
branches:
- main
pull_request:
branches:
- main
jobs:
build:
runs-on: ubuntu-latest
permissions:
contents: read
strategy:
matrix:
python-version: ["3.11", "3.12", "3.13"]
steps:
- uses: actions/checkout@v4
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}