Move the action configs to correct dir

This commit is contained in:
2025-02-22 22:22:58 -05:00
parent b8a80fb8a8
commit f14fe1f789
3 changed files with 0 additions and 0 deletions

30
.gitea/workflows/test.yml Normal file
View File

@@ -0,0 +1,30 @@
name: Test
on:
push:
branches:
- main
pull_request:
branches:
- main
jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Set up Python
uses: actions/setup-python@v2
with:
python-version: 3.x
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install pytest
- name: Run tests
run: |
pytest