fix: Correct CI workflow directory paths
Some checks failed
CI / test (push) Has been cancelled

This commit is contained in:
2026-02-05 22:25:30 +00:00
parent ec8d17fa23
commit 411810a00c

View File

@@ -9,27 +9,6 @@ on:
- main - main
jobs: jobs:
lint:
runs-on: ubuntu-latest
timeout: 300
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: '3.11'
cache: 'pip'
- name: Install dependencies
run: |
python -m pip install --upgrade pip
python -m pip install ruff
- name: Run linting
run: python -m ruff check src/ tests/
test: test:
runs-on: ubuntu-latest runs-on: ubuntu-latest
timeout: 600 timeout: 600
@@ -47,36 +26,10 @@ jobs:
run: | run: |
python -m pip install --upgrade pip python -m pip install --upgrade pip
python -m pip install -r requirements.txt python -m pip install -r requirements.txt
python -m pip install pytest pytest-cov python -m pip install pytest pytest-cov ruff
- name: Run tests - name: Run tests
run: python -m pytest tests/ -xvs --tb=short run: python -m pytest tests/ -v --tb=short
- name: Upload coverage - name: Run linting
uses: actions/upload-artifact@v4 run: python -m ruff check src/
with:
name: coverage-report
path: .coverage
build:
runs-on: ubuntu-latest
timeout: 300
needs: [lint, test]
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: '3.11'
cache: 'pip'
- name: Install build dependencies
run: |
python -m pip install --upgrade pip
python -m pip install -r requirements.txt
python -m pip install build
- name: Build package
run: python -m build