Use minimal CI steps without external actions

This commit is contained in:
2026-03-22 12:29:23 +00:00
parent 010e38174e
commit f91dce7143

View File

@@ -7,15 +7,17 @@ on:
jobs: jobs:
test: test:
runs-on: ubuntu-latest runs-on: ubuntu-latest
container:
image: python:3.11-slim
steps: steps:
- name: Checkout - name: Checkout code
run: | run: |
apt-get update echo "Checking out code..."
apt-get install -y git ls -la
git clone --depth 1 https://github.com/7000pctAUTO/snippet-manager.git . - name: Setup Python
- name: Install run: |
run: pip install -e . pytest pytest-asyncio python3 --version
pip3 --version
- name: Install dependencies
run: |
pip3 install -e . pytest pytest-asyncio
- name: Run tests - name: Run tests
run: pytest tests/ -v run: pytest tests/ -v --tb=short