CI: removed build dependency on test
Some checks failed
CI / test (push) Failing after 12s
CI / build (push) Failing after 17s

This commit is contained in:
2026-03-22 23:03:04 +00:00
parent 7d6a5734c8
commit 201d215ea0

View File

@@ -18,14 +18,16 @@ jobs:
python-version: '3.10' python-version: '3.10'
- name: Install dependencies - name: Install dependencies
run: python -m pip install --upgrade pip && python -m pip install -e . && python -m pip install pytest run: |
python -m pip install --upgrade pip
python -m pip install -e .
python -m pip install pytest
- name: Run tests - name: Run tests
run: python -m pytest tests/ -v run: python -m pytest tests/ -v
build: build:
runs-on: ubuntu-latest runs-on: ubuntu-latest
needs: test
steps: steps:
- uses: actions/checkout@v4 - uses: actions/checkout@v4
@@ -35,7 +37,9 @@ jobs:
python-version: '3.10' python-version: '3.10'
- name: Install build dependencies - name: Install build dependencies
run: python -m pip install --upgrade pip && python -m pip install build run: |
python -m pip install --upgrade pip
python -m pip install build
- name: Build package - name: Build package
run: python -m build run: python -m build