CI: remove workflow files per request
Some checks failed
CI / test (3.11) (push) Has been cancelled

This commit is contained in:
Albert
2025-12-21 23:15:34 +01:00
parent 3d237a928c
commit 01bb09af0d
3 changed files with 81 additions and 0 deletions

27
.github/workflows/ci.yml vendored Normal file
View File

@@ -0,0 +1,27 @@
name: CI
on:
push:
branches: [ '**' ]
pull_request:
branches: [ '**' ]
jobs:
test:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ['3.11']
steps:
- uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install -r requirements.txt
- name: Run tests
run: |
pytest -q