This commit is contained in:
Astound 2024-07-15 10:39:00 +08:00
parent 09a437f7fb
commit 4e327944a0
Signed by: kaiser
GPG Key ID: 97504AF0027B1A56

23
.gitea/workflows/ci.yaml Normal file
View File

@ -0,0 +1,23 @@
name: CI
on: [push, pull_request]
jobs:
test:
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 dependencies
run: |
pip install --upgrade pip
pip install -r requirements-dev.txt
- name: Run tests
run: pytest